diff --git a/appendices/glossary.html b/appendices/glossary.html index 3cc571e50..358ce547a 100644 --- a/appendices/glossary.html +++ b/appendices/glossary.html @@ -271,6 +271,9 @@
Kernel-based Virtual Machine Secured, an open-source project.
Source: https://github.com/jkrh/kvms
Lab Wayland Compositor, a window-stacking compositor for Wayland, an open-source project.
+Source: https://github.com/labwc/labwc
memory management unit
Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress:
+Ghaf Framework is free software, currently under active development.
+The scope of target support is updated with development progress:
Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix.
-If you authorize your development SSH keys in the ssh.nix module and rebuild ghaf for your target device, you can use nixos-rebuild switch
to quickly deploy your configuration changes to the target device over the network using SSH. For example:
If you authorize your development SSH keys in the ssh.nix module and rebuild Ghaf for your target device, you can use nixos-rebuild switch
to quickly deploy your configuration changes to the target device over the network using SSH. For example:
nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@<ip_address_of_ghaf-host> --fast switch
...
nixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@<ip_address_of_ghaf-host> --fast switch
...
-Please note that with the -debug
targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access.
+With the
+-debug
targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access.
Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines.
-Labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment. -To use Labwc as your default desktop environment, add it as a module to Ghaf:
+labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment.
+To use labwc as your default desktop environment, add it as a module to Ghaf:
profiles.graphics.compositor = "labwc"
orThe basis of the labwc configuration is the set of following files: rc.xml
, menu.xml
, autostart
, and environment
. These files can be edited by substituting in the Labwc overlay overlays/custom-packages/labwc/default.nix
.
The basis of the labwc configuration is the set of following files: rc.xml
, menu.xml
, autostart
, and environment
. These files can be edited by substituting in the labwc overlay overlays/custom-packages/labwc/default.nix
.
The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS.
-Ghaf uses patched Labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration
= yes
). The borderColor
property is responsible for the frame color.
Ghaf uses patched labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration
= yes
). The borderColor
property is responsible for the frame color.
-TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients.
For example:
+For example, the foot terminal with Aqua colored frame:
<windowRules>
<windowRule identifier="Foot" borderColor="#00FFFF" serverDecoration="yes" skipTaskbar="yes" />
<windowRule identifier="firefox" borderColor="#FF0000" serverDecoration="yes" skipTaskbar="yes" />
@@ -2839,6 +2843,9 @@ KVM
KVMS
Kernel-based Virtual Machine Secured, an open-source project.
Source: https://github.com/jkrh/kvms
+labws, LabWS
+Lab Wayland Compositor, a window-stacking compositor for Wayland, an open-source project.
+Source: https://github.com/labwc/labwc
MMU
memory management unit
MSI
diff --git a/ref_impl/creating_appvm.html b/ref_impl/creating_appvm.html
index 985e1b388..c558dc254 100644
--- a/ref_impl/creating_appvm.html
+++ b/ref_impl/creating_appvm.html
@@ -190,7 +190,7 @@ Adding AppVM Description
Add the VM description in the target configuration.
-lenovo-x1.nix already has AppVMs inside for Chromium, Gala, and Zathura applications.
+lenovo-x1-carbon.nix already has AppVMs inside for Chromium, Gala, and Zathura applications.
vms = with pkgs; [
{
@@ -226,13 +226,13 @@ AppVMs Example<
Adding Application Launcher in GUI VM
-To add an app launcher, add an element in the guivm.nix file to the graphics.launchers list.
-A launcher element has 2 properties:
-
-- path – path to the executable you want to run, like a graphical application.
-- icon – path to an icon to show.
-
-Check the example launchers at guivm.nix.
+To add an application launcher, add an element in the guivm.nix file to the graphics.weston.launchers list.
+A launcher element has two properties:
+
+- path–path to the executable you want to run, like a graphical application;
+- icon–path to an icon to show.
+
+Check the example launchers at guivm.nix.
diff --git a/ref_impl/development.html b/ref_impl/development.html
index 71904fcc9..544611664 100644
--- a/ref_impl/development.html
+++ b/ref_impl/development.html
@@ -181,22 +181,26 @@ Ghaf Framework
SPDX-License-Identifier: CC-BY-SA-4.0
-->
Development
-Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress:
+Ghaf Framework is free software, currently under active development.
+The scope of target support is updated with development progress:
- Build and Run
- Running Remote Build on NixOS
- Installer
- Cross-Compilation
- Creating Application VM
+- labwc Desktop Environment
Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix.
-If you authorize your development SSH keys in the ssh.nix module and rebuild ghaf for your target device, you can use nixos-rebuild switch
to quickly deploy your configuration changes to the target device over the network using SSH. For example:
+If you authorize your development SSH keys in the ssh.nix module and rebuild Ghaf for your target device, you can use nixos-rebuild switch
to quickly deploy your configuration changes to the target device over the network using SSH. For example:
nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@<ip_address_of_ghaf-host> --fast switch
...
nixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@<ip_address_of_ghaf-host> --fast switch
...
-Please note that with the -debug
targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access.
+
+With the -debug
targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access.
+
Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines.
diff --git a/ref_impl/labwc.html b/ref_impl/labwc.html
index 93839b45f..28713606e 100644
--- a/ref_impl/labwc.html
+++ b/ref_impl/labwc.html
@@ -180,22 +180,22 @@ Ghaf Framework
Copyright 2022-2024 TII (SSRC) and the Ghaf contributors
SPDX-License-Identifier: CC-BY-SA-4.0
-->
-Labwc Desktop Environment
-Labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment.
-To use Labwc as your default desktop environment, add it as a module to Ghaf:
+labwc Desktop Environment
+labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment.
+To use labwc as your default desktop environment, add it as a module to Ghaf:
- change the configuration option
profiles.graphics.compositor = "labwc"
or
-- uncomment the corresponding line in guivm.nix file.
+- uncomment the corresponding line in the guivm.nix file.
-The basis of the labwc configuration is the set of following files: rc.xml
, menu.xml
, autostart
, and environment
. These files can be edited by substituting in the Labwc overlay overlays/custom-packages/labwc/default.nix
.
+The basis of the labwc configuration is the set of following files: rc.xml
, menu.xml
, autostart
, and environment
. These files can be edited by substituting in the labwc overlay overlays/custom-packages/labwc/default.nix
.
Window Border Coloring
The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS.
-Ghaf uses patched Labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration
= yes
). The borderColor
property is responsible for the frame color.
+Ghaf uses patched labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration
= yes
). The borderColor
property is responsible for the frame color.
TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients.
-For example:
+For example, the foot terminal with Aqua colored frame:
<windowRules>
<windowRule identifier="Foot" borderColor="#00FFFF" serverDecoration="yes" skipTaskbar="yes" />
<windowRule identifier="firefox" borderColor="#FF0000" serverDecoration="yes" skipTaskbar="yes" />
diff --git a/searchindex.js b/searchindex.js
index f655e0963..187538c10 100644
--- a/searchindex.js
+++ b/searchindex.js
@@ -1 +1 @@
-Object.assign(window.search, {"doc_urls":["index.html#about-ghaf","index.html#embedded-virtualization","index.html#ghaf-platform-applications","index.html#design-principles","index.html#build-system-and-supply-chain","features/features.html#features","features/features.html#status","features/features.html#reference-devices","features/features.html#release-builds-and-hardware-architecture-support","features/features.html#development","features/features.html#target-architecture","features/features.html#applications-and-vm-control","features/features.html#next-steps","architecture/architecture.html#architecture","architecture/architecture.html#in-this-chapter","architecture/variants.html#architectural-variants","architecture/adr.html#architecture-decision-records","architecture/adr/minimal-host.html#minimal-host","architecture/adr/minimal-host.html#status","architecture/adr/minimal-host.html#context","architecture/adr/minimal-host.html#requirements","architecture/adr/minimal-host.html#decision","architecture/adr/minimal-host.html#consequences","architecture/adr/minimal-host.html#defined-in-nix-mh01","architecture/adr/minimal-host.html#reduced-profile-mh02","architecture/adr/minimal-host.html#no-networking-mh03","architecture/adr/minimal-host.html#no-graphics-mh04","architecture/adr/minimal-host.html#no-getty-mh05","architecture/adr/minimal-host.html#no-nix-toolings-mh06","architecture/adr/minimal-host.html#minimal-defconfig-mh07","architecture/adr/minimal-host.html#update-via-adminvm-mh08","architecture/adr/minimal-host.html#read-only-filesystem-mh09","architecture/adr/netvm.html#netvmnetworking-virtual-machine","architecture/adr/netvm.html#status","architecture/adr/netvm.html#context","architecture/adr/netvm.html#decision","architecture/adr/netvm.html#consequences","architecture/adr/platform-bus-passthrough-support.html#rust-vmmbus-passthrough-support-for-rust-vmms","architecture/adr/platform-bus-passthrough-support.html#status","architecture/adr/platform-bus-passthrough-support.html#context","architecture/adr/platform-bus-passthrough-support.html#decision","architecture/hardening.html#hardening","architecture/hardening.html#kernel","architecture/hardening.html#kernel-hardening-process","architecture/hardening.html#host-kernel","architecture/secureboot.html#secure-boot","architecture/secureboot.html#enabling-secure-boot","architecture/secureboot.html#creating-secure-boot-keys","architecture/secureboot.html#current-implementation","architecture/secureboot.html#secure-boot-verification","architecture/stack.html#stack","architecture/stack.html#system-vms","architecture/stack.html#application-or-service-vm","architecture/stack.html#guest-oss","appendices/contributing_general.html#contribution-guidelines","ref_impl/reference_implementations.html#reference-implementations","ref_impl/reference_implementations.html#approach","ref_impl/reference_implementations.html#example","ref_impl/reference_implementations.html#in-this-chapter","ref_impl/development.html#development","ref_impl/build_and_run.html#build-and-run","ref_impl/build_and_run.html#prerequisites","ref_impl/build_and_run.html#running-ghaf-image-for-x86-vm-ghaf-host","ref_impl/build_and_run.html#running-ghaf-image-for-x86-computer","ref_impl/build_and_run.html#running-ghaf-image-for-lenovo-x1","ref_impl/build_and_run.html#ghaf-image-for-nvidia-jetson-orin-agx","ref_impl/build_and_run.html#building-ghaf-image-for-nxp-imx-8qm-mek","ref_impl/build_and_run.html#building-ghaf-image-for-microchip-icicle-kit","ref_impl/remote_build_setup.html#running-remote-build-on-nixos","ref_impl/remote_build_setup.html#1-configuring-ssh-keys","ref_impl/remote_build_setup.html#2-setting-up-configuration-files","ref_impl/remote_build_setup.html#troubleshooting","ref_impl/remote_build_setup.html#single-user-nix-installation-issues","ref_impl/remote_build_setup.html#vpn-setup-for-remote-access","ref_impl/remote_build_setup.html#private-key-on-local-machine-not-matching-public-key-on-remote-machine","ref_impl/installer.html#installer","ref_impl/installer.html#configuring-and-building-installer-for-ghaf","ref_impl/installer.html#adding-installer-modules","ref_impl/installer.html#built-in-installer-modules","ref_impl/installer.html#flushimage","ref_impl/cross_compilation.html#cross-compilation","ref_impl/cross_compilation.html#cross-compilation-for-microchip-icicle-kit-riscv64","ref_impl/cross_compilation.html#future-cross-compilation-support","ref_impl/cross_compilation.html#binfmt-emulated-build","ref_impl/creating_appvm.html#creating-application-vm","ref_impl/creating_appvm.html#adding-appvm-description","ref_impl/creating_appvm.html#adding-application-launcher-in-gui-vm","ref_impl/labwc.html#labwc-desktop-environment","ref_impl/labwc.html#window-border-coloring","ref_impl/ghaf-based-project.html#ghaf-as-library-templates","ref_impl/ghaf-based-project.html#using-ghaf-templates","ref_impl/ghaf-based-project.html#updating-ghaf-revision","ref_impl/ghaf-based-project.html#customizing-ghaf-modules","ref_impl/example_project.html#example-project","ref_impl/example_project.html#troubleshooting-for-lenovo-x1-laptop","ref_impl/modules_options.html","technologies/technologies.html#technologies","technologies/technologies.html#hardware-requirements-for-virtualization","technologies/technologies.html#virtual-machine-manager-vmm","technologies/technologies.html#in-this-chapter","technologies/compartment.html#compartmentalization","technologies/passthrough.html#devices-passthrough","technologies/vfio.html#binding-devices-to-vfio-driver-to-allow-passthrough","technologies/vfio.html#using-driverctl-package","technologies/nvidia_agx_pt_uart.html#nvidia-jetson-agx-orin-uart-passthrough","technologies/nvidia_agx_pt_uart.html#uart-connections","technologies/nvidia_agx_pt_uart.html#uarti-selected-for-passthrough","technologies/nvidia_agx_pt_uart.html#host-device-tree","technologies/nvidia_agx_pt_uart.html#guest-device-tree","technologies/nvidia_agx_pt_uart.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#nvidia-jetson-agx-orin-pcie-passthrough","technologies/nvidia_agx_pt_pcie.html#pcie-slots-in-nvidia-jetson-agx-orin","technologies/nvidia_agx_pt_pcie.html#enabling-pcie-devices-for-vfio","technologies/nvidia_agx_pt_pcie.html#binding-device-for-vfio","technologies/nvidia_agx_pt_pcie.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#arm64-pci-device-interrupts","technologies/nvidia_agx_pt_pcie.html#more-work-for-arm64","technologies/x86_pcie_crosvm.html#x86-pcie-device-passthrough-with-crosvm","technologies/x86_pcie_crosvm.html#enabling-pcie-devices-for-vfio-with-driverctl","technologies/x86_pcie_crosvm.html#reseting-driver-to-original-state-afterwards","technologies/nvidia_virtualization_bpmp.html#nvidia-jetson-agx-orin-boot-and-power-management-processor-virtualization","technologies/nvidia_virtualization_bpmp.html#architectural-overview","technologies/nvidia_virtualization_bpmp.html#use-cases","technologies/nvidia_virtualization_bpmp.html#using-bpmp-virtualization-options-on-nvidia-jetson-agx-orin","technologies/nvidia_virtualization_bpmp.html#testing","technologies/nvidia_virtualization_bpmp.html#host-testing","technologies/nvidia_virtualization_bpmp.html#guest-for-uarta-testing","technologies/nvidia_virtualization_bpmp.html#related-topics","technologies/hypervisor_options.html#ghaf-specific-microvm-hypervisor-options","technologies/hypervisor_options.html#options-definitions","technologies/hypervisor_options.html#generated-hypervisor-start-commands","technologies/hypervisor_options.html#adding-option-to-hypervisor-command-line","scs/ci-cd-system.html#continuous-integration-and-distribution","scs/ci-cd-system.html#general-process","scs/scs.html#supply-chain-security","scs/scs.html#in-this-chapter","scs/slsa-framework.html#slsa-framework","scs/slsa-framework.html#slsa-terminology","scs/slsa-framework.html#levels-of-assurance","scs/slsa-framework.html#requirements","scs/basics.html#basic-security-measures","scs/basics.html#source-code--version-control-security","scs/basics.html#commit-signing","scs/basics.html#branch-protection","scs/basics.html#software-signing","scs/basics.html#enabling-image-signing-on-hydra","scs/basics.html#shared-nix-store","scs/basics.html#data-encryption-in-transit","scs/sbom.html#software-bill-of-materials-sbom","scs/sbom.html#sbom-formats-and-specifications","scs/sbom.html#sbom-usage-in-ghaf","scs/sbom.html#sbom-tooling-in-ghaf","scs/sbom.html#references","scs/pki.html#public-key-infrastructure","scs/pki.html#private-certificate-authority-pca","scs/pki.html#hardware-security-module","scs/pki.html#hsm-variants-for-consideration","scs/pki.html#ca-hierarchy-options","scs/pki.html#proposed-ca-hierarchy","scs/ghaf-security-fix-automation.html#security-fix-automation","scs/ghaf-security-fix-automation.html#semi-automated-upstream-first-process","release_notes/release_notes.html#ghaf-release-notes","release_notes/release_notes.html#in-this-chapter","release_notes/ghaf-23.12.html#release-ghaf-2312","release_notes/ghaf-23.12.html#release-branch","release_notes/ghaf-23.12.html#supported-hardware","release_notes/ghaf-23.12.html#what-is-new-in-ghaf-2312","release_notes/ghaf-23.12.html#bug-fixes","release_notes/ghaf-23.12.html#known-issues-and-limitations","release_notes/ghaf-23.12.html#environment-requirements","release_notes/ghaf-23.12.html#installation-instructions","release_notes/ghaf-23.09.html#release-ghaf-2309","release_notes/ghaf-23.09.html#release-branch","release_notes/ghaf-23.09.html#supported-hardware","release_notes/ghaf-23.09.html#what-is-new-in-ghaf-2309","release_notes/ghaf-23.09.html#bug-fixes","release_notes/ghaf-23.09.html#known-issues-and-limitations","release_notes/ghaf-23.09.html#environment-requirements","release_notes/ghaf-23.09.html#installation-instructions","release_notes/ghaf-23.06.html#release-ghaf-2306","release_notes/ghaf-23.06.html#release-branch","release_notes/ghaf-23.06.html#supported-hardware","release_notes/ghaf-23.06.html#what-is-new-in-ghaf-2306","release_notes/ghaf-23.06.html#bug-fixes","release_notes/ghaf-23.06.html#known-issues-and-limitations","release_notes/ghaf-23.05.html#release-ghaf-2305","release_notes/ghaf-23.05.html#release-branch","release_notes/ghaf-23.05.html#supported-hardware","release_notes/ghaf-23.05.html#what-is-new-in-ghaf-2305","release_notes/ghaf-23.05.html#known-issues-and-limitations","scenarios/showcases.html#showcases","scenarios/showcases.html#secure-laptop","scenarios/showcases.html#in-this-chapter","scenarios/run_win_vm.html#running-windows-11-in-vm-on-ghaf","scenarios/run_win_vm.html#getting-windows-11-image","scenarios/run_win_vm.html#running-windows-11-in-vm","scenarios/run_win_vm.html#using-ui-to-launch-windows-11-vm","scenarios/run_win_vm.html#passing-additional-parameters-to-qemu","scenarios/run_cuttlefish.html#running-android-cuttlefish-virtual-device-on-ghaf","scenarios/run_cuttlefish.html#installing-cuttlefish","scenarios/run_cuttlefish.html#running-cuttlefish","scenarios/run_cuttlefish.html#connecting-to-cuttlefish-device","appendices/glossary.html#glossary","appendices/glossary.html#appropriate-use-of-articles-before-abbreviations","appendices/glossary.html#trivia","appendices/glossary.html#project-related","appendices/glossary.html#ghaf","appendices/glossary.html#cicd","appendices/glossary.html#ssrc","appendices/glossary.html#tii","appendices/glossary.html#core-concepts","appendices/glossary.html#adr","appendices/glossary.html#bpmp","appendices/glossary.html#bsp","appendices/glossary.html#dhcp","appendices/glossary.html#dma","appendices/glossary.html#emmc-e-mmc","appendices/glossary.html#eula","appendices/glossary.html#fw","appendices/glossary.html#gala","appendices/glossary.html#gui","appendices/glossary.html#ids","appendices/glossary.html#iommu","appendices/glossary.html#ip","appendices/glossary.html#isa","appendices/glossary.html#kvm","appendices/glossary.html#kvms","appendices/glossary.html#mmu","appendices/glossary.html#msi","appendices/glossary.html#nixos","appendices/glossary.html#oem","appendices/glossary.html#os","appendices/glossary.html#pci","appendices/glossary.html#pcie","appendices/glossary.html#qemu","appendices/glossary.html#sbsa","appendices/glossary.html#sku","appendices/glossary.html#soc","appendices/glossary.html#ssd","appendices/glossary.html#tcb","appendices/glossary.html#tls","appendices/glossary.html#uart","appendices/glossary.html#uefi","appendices/glossary.html#ui","appendices/glossary.html#vfio","appendices/glossary.html#vm","appendices/glossary.html#vmm","appendices/glossary.html#zta","appendices/glossary.html#scs-related","appendices/glossary.html#ca","appendices/glossary.html#cms","appendices/glossary.html#eddsa","appendices/glossary.html#gpg","appendices/glossary.html#hsm","appendices/glossary.html#openssl","appendices/glossary.html#pki","appendices/glossary.html#pynacl","appendices/glossary.html#ra","appendices/glossary.html#sbom","appendices/glossary.html#scs","appendices/glossary.html#secure-cryptoprocessor","appendices/glossary.html#software-artifact","appendices/glossary.html#slsa","research/research.html#research-notes","research/passthrough/ethernet.html#imx-8qm-ethernet-passthrough","research/passthrough/ethernet.html#host-kernel-configuration","research/passthrough/ethernet.html#host-device-tree-explained","research/passthrough/ethernet.html#other-notes-about-passthrough","research/passthrough/ethernet.html#changes-in-u-boot","research/passthrough/ethernet.html#running-platform-device-passthrough-in-qemu","research/passthrough/ethernet.html#guest-setup","research/passthrough/ethernet.html#adding-devices-to-guest","research/passthrough/ethernet.html#some-final-touches-for-guest-devices","research/passthrough/ethernet.html#compiling-the-device-tree-source-to-binary-form","research/passthrough/ethernet.html#compiling-for-guest","research/passthrough/ethernet.html#compiling-for-host","research/passthrough/ethernet.html#running-qemu-with-passthrough-platform-devices","research/installation.html#approaches-to-ghaf-system-installation","research/installation.html#ghaf-initial-approach","research/installation.html#nixos-approach","research/installation.html#modular-interactive","research/installation.html#declarative-non-interactive-installation","research/installation.html#discussion"],"index":{"documentStore":{"docInfo":{"0":{"body":119,"breadcrumbs":2,"title":1},"1":{"body":62,"breadcrumbs":3,"title":2},"10":{"body":129,"breadcrumbs":3,"title":2},"100":{"body":100,"breadcrumbs":3,"title":1},"101":{"body":77,"breadcrumbs":4,"title":2},"102":{"body":43,"breadcrumbs":12,"title":6},"103":{"body":123,"breadcrumbs":9,"title":3},"104":{"body":18,"breadcrumbs":14,"title":6},"105":{"body":211,"breadcrumbs":10,"title":2},"106":{"body":31,"breadcrumbs":11,"title":3},"107":{"body":87,"breadcrumbs":11,"title":3},"108":{"body":87,"breadcrumbs":11,"title":3},"109":{"body":117,"breadcrumbs":11,"title":3},"11":{"body":38,"breadcrumbs":4,"title":3},"110":{"body":22,"breadcrumbs":14,"title":6},"111":{"body":338,"breadcrumbs":14,"title":6},"112":{"body":114,"breadcrumbs":12,"title":4},"113":{"body":127,"breadcrumbs":11,"title":3},"114":{"body":59,"breadcrumbs":11,"title":3},"115":{"body":104,"breadcrumbs":12,"title":4},"116":{"body":179,"breadcrumbs":11,"title":3},"117":{"body":0,"breadcrumbs":12,"title":5},"118":{"body":127,"breadcrumbs":12,"title":5},"119":{"body":13,"breadcrumbs":12,"title":5},"12":{"body":8,"breadcrumbs":3,"title":2},"120":{"body":45,"breadcrumbs":15,"title":9},"121":{"body":59,"breadcrumbs":8,"title":2},"122":{"body":57,"breadcrumbs":8,"title":2},"123":{"body":42,"breadcrumbs":14,"title":8},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":35,"breadcrumbs":8,"title":2},"126":{"body":81,"breadcrumbs":9,"title":3},"127":{"body":15,"breadcrumbs":8,"title":2},"128":{"body":30,"breadcrumbs":8,"title":5},"129":{"body":43,"breadcrumbs":5,"title":2},"13":{"body":101,"breadcrumbs":2,"title":1},"130":{"body":161,"breadcrumbs":7,"title":4},"131":{"body":78,"breadcrumbs":8,"title":5},"132":{"body":38,"breadcrumbs":6,"title":3},"133":{"body":107,"breadcrumbs":5,"title":2},"134":{"body":121,"breadcrumbs":6,"title":3},"135":{"body":12,"breadcrumbs":4,"title":1},"136":{"body":24,"breadcrumbs":7,"title":2},"137":{"body":18,"breadcrumbs":7,"title":2},"138":{"body":154,"breadcrumbs":7,"title":2},"139":{"body":69,"breadcrumbs":6,"title":1},"14":{"body":14,"breadcrumbs":2,"title":1},"140":{"body":0,"breadcrumbs":9,"title":3},"141":{"body":16,"breadcrumbs":11,"title":5},"142":{"body":24,"breadcrumbs":8,"title":2},"143":{"body":34,"breadcrumbs":8,"title":2},"144":{"body":58,"breadcrumbs":8,"title":2},"145":{"body":43,"breadcrumbs":10,"title":4},"146":{"body":26,"breadcrumbs":9,"title":3},"147":{"body":25,"breadcrumbs":9,"title":3},"148":{"body":17,"breadcrumbs":10,"title":4},"149":{"body":76,"breadcrumbs":9,"title":3},"15":{"body":131,"breadcrumbs":5,"title":2},"150":{"body":48,"breadcrumbs":9,"title":3},"151":{"body":43,"breadcrumbs":9,"title":3},"152":{"body":18,"breadcrumbs":7,"title":1},"153":{"body":68,"breadcrumbs":9,"title":3},"154":{"body":45,"breadcrumbs":10,"title":4},"155":{"body":48,"breadcrumbs":9,"title":3},"156":{"body":148,"breadcrumbs":9,"title":3},"157":{"body":118,"breadcrumbs":9,"title":3},"158":{"body":29,"breadcrumbs":9,"title":3},"159":{"body":40,"breadcrumbs":9,"title":3},"16":{"body":47,"breadcrumbs":7,"title":3},"160":{"body":204,"breadcrumbs":11,"title":5},"161":{"body":19,"breadcrumbs":5,"title":3},"162":{"body":12,"breadcrumbs":3,"title":1},"163":{"body":0,"breadcrumbs":8,"title":3},"164":{"body":2,"breadcrumbs":7,"title":2},"165":{"body":25,"breadcrumbs":7,"title":2},"166":{"body":90,"breadcrumbs":8,"title":3},"167":{"body":40,"breadcrumbs":7,"title":2},"168":{"body":95,"breadcrumbs":8,"title":3},"169":{"body":4,"breadcrumbs":7,"title":2},"17":{"body":0,"breadcrumbs":8,"title":2},"170":{"body":80,"breadcrumbs":7,"title":2},"171":{"body":0,"breadcrumbs":8,"title":3},"172":{"body":2,"breadcrumbs":7,"title":2},"173":{"body":25,"breadcrumbs":7,"title":2},"174":{"body":61,"breadcrumbs":8,"title":3},"175":{"body":20,"breadcrumbs":7,"title":2},"176":{"body":116,"breadcrumbs":8,"title":3},"177":{"body":4,"breadcrumbs":7,"title":2},"178":{"body":47,"breadcrumbs":7,"title":2},"179":{"body":0,"breadcrumbs":8,"title":3},"18":{"body":1,"breadcrumbs":7,"title":1},"180":{"body":2,"breadcrumbs":7,"title":2},"181":{"body":16,"breadcrumbs":7,"title":2},"182":{"body":31,"breadcrumbs":8,"title":3},"183":{"body":9,"breadcrumbs":7,"title":2},"184":{"body":49,"breadcrumbs":8,"title":3},"185":{"body":0,"breadcrumbs":8,"title":3},"186":{"body":2,"breadcrumbs":7,"title":2},"187":{"body":16,"breadcrumbs":7,"title":2},"188":{"body":38,"breadcrumbs":8,"title":3},"189":{"body":55,"breadcrumbs":8,"title":3},"19":{"body":73,"breadcrumbs":7,"title":1},"190":{"body":22,"breadcrumbs":2,"title":1},"191":{"body":93,"breadcrumbs":3,"title":2},"192":{"body":7,"breadcrumbs":2,"title":1},"193":{"body":28,"breadcrumbs":10,"title":5},"194":{"body":83,"breadcrumbs":9,"title":4},"195":{"body":236,"breadcrumbs":9,"title":4},"196":{"body":58,"breadcrumbs":11,"title":6},"197":{"body":30,"breadcrumbs":9,"title":4},"198":{"body":51,"breadcrumbs":10,"title":6},"199":{"body":209,"breadcrumbs":6,"title":2},"2":{"body":42,"breadcrumbs":4,"title":3},"20":{"body":158,"breadcrumbs":7,"title":1},"200":{"body":29,"breadcrumbs":6,"title":2},"201":{"body":52,"breadcrumbs":7,"title":3},"202":{"body":118,"breadcrumbs":2,"title":1},"203":{"body":92,"breadcrumbs":6,"title":5},"204":{"body":20,"breadcrumbs":2,"title":1},"205":{"body":0,"breadcrumbs":3,"title":2},"206":{"body":10,"breadcrumbs":2,"title":1},"207":{"body":35,"breadcrumbs":2,"title":1},"208":{"body":22,"breadcrumbs":2,"title":1},"209":{"body":33,"breadcrumbs":2,"title":1},"21":{"body":41,"breadcrumbs":7,"title":1},"210":{"body":0,"breadcrumbs":3,"title":2},"211":{"body":32,"breadcrumbs":2,"title":1},"212":{"body":38,"breadcrumbs":2,"title":1},"213":{"body":10,"breadcrumbs":2,"title":1},"214":{"body":26,"breadcrumbs":2,"title":1},"215":{"body":21,"breadcrumbs":2,"title":1},"216":{"body":2,"breadcrumbs":4,"title":3},"217":{"body":4,"breadcrumbs":2,"title":1},"218":{"body":1,"breadcrumbs":2,"title":1},"219":{"body":37,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":7,"title":1},"220":{"body":3,"breadcrumbs":2,"title":1},"221":{"body":16,"breadcrumbs":2,"title":1},"222":{"body":4,"breadcrumbs":2,"title":1},"223":{"body":14,"breadcrumbs":2,"title":1},"224":{"body":13,"breadcrumbs":2,"title":1},"225":{"body":10,"breadcrumbs":2,"title":1},"226":{"body":10,"breadcrumbs":2,"title":1},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":3,"breadcrumbs":2,"title":1},"229":{"body":10,"breadcrumbs":2,"title":1},"23":{"body":37,"breadcrumbs":9,"title":3},"230":{"body":3,"breadcrumbs":2,"title":1},"231":{"body":2,"breadcrumbs":2,"title":1},"232":{"body":3,"breadcrumbs":2,"title":1},"233":{"body":4,"breadcrumbs":2,"title":1},"234":{"body":9,"breadcrumbs":2,"title":1},"235":{"body":32,"breadcrumbs":2,"title":1},"236":{"body":10,"breadcrumbs":2,"title":1},"237":{"body":14,"breadcrumbs":2,"title":1},"238":{"body":3,"breadcrumbs":2,"title":1},"239":{"body":23,"breadcrumbs":2,"title":1},"24":{"body":30,"breadcrumbs":9,"title":3},"240":{"body":5,"breadcrumbs":2,"title":1},"241":{"body":7,"breadcrumbs":2,"title":1},"242":{"body":22,"breadcrumbs":2,"title":1},"243":{"body":2,"breadcrumbs":2,"title":1},"244":{"body":6,"breadcrumbs":2,"title":1},"245":{"body":2,"breadcrumbs":2,"title":1},"246":{"body":3,"breadcrumbs":2,"title":1},"247":{"body":7,"breadcrumbs":2,"title":1},"248":{"body":0,"breadcrumbs":3,"title":2},"249":{"body":2,"breadcrumbs":2,"title":1},"25":{"body":105,"breadcrumbs":8,"title":2},"250":{"body":3,"breadcrumbs":2,"title":1},"251":{"body":5,"breadcrumbs":2,"title":1},"252":{"body":13,"breadcrumbs":2,"title":1},"253":{"body":10,"breadcrumbs":2,"title":1},"254":{"body":5,"breadcrumbs":2,"title":1},"255":{"body":6,"breadcrumbs":2,"title":1},"256":{"body":9,"breadcrumbs":2,"title":1},"257":{"body":2,"breadcrumbs":2,"title":1},"258":{"body":14,"breadcrumbs":2,"title":1},"259":{"body":10,"breadcrumbs":2,"title":1},"26":{"body":26,"breadcrumbs":8,"title":2},"260":{"body":6,"breadcrumbs":3,"title":2},"261":{"body":11,"breadcrumbs":3,"title":2},"262":{"body":23,"breadcrumbs":2,"title":1},"263":{"body":14,"breadcrumbs":4,"title":2},"264":{"body":168,"breadcrumbs":10,"title":4},"265":{"body":22,"breadcrumbs":9,"title":3},"266":{"body":373,"breadcrumbs":10,"title":4},"267":{"body":55,"breadcrumbs":8,"title":2},"268":{"body":56,"breadcrumbs":9,"title":3},"269":{"body":114,"breadcrumbs":11,"title":5},"27":{"body":29,"breadcrumbs":8,"title":2},"270":{"body":112,"breadcrumbs":8,"title":2},"271":{"body":665,"breadcrumbs":9,"title":3},"272":{"body":254,"breadcrumbs":10,"title":4},"273":{"body":35,"breadcrumbs":12,"title":6},"274":{"body":27,"breadcrumbs":8,"title":2},"275":{"body":27,"breadcrumbs":8,"title":2},"276":{"body":129,"breadcrumbs":11,"title":5},"277":{"body":20,"breadcrumbs":8,"title":4},"278":{"body":152,"breadcrumbs":7,"title":3},"279":{"body":120,"breadcrumbs":6,"title":2},"28":{"body":42,"breadcrumbs":9,"title":3},"280":{"body":141,"breadcrumbs":6,"title":2},"281":{"body":174,"breadcrumbs":8,"title":4},"282":{"body":46,"breadcrumbs":5,"title":1},"29":{"body":29,"breadcrumbs":9,"title":3},"3":{"body":127,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":10,"title":4},"31":{"body":12,"breadcrumbs":9,"title":3},"32":{"body":0,"breadcrumbs":9,"title":3},"33":{"body":10,"breadcrumbs":7,"title":1},"34":{"body":56,"breadcrumbs":7,"title":1},"35":{"body":171,"breadcrumbs":7,"title":1},"36":{"body":37,"breadcrumbs":7,"title":1},"37":{"body":0,"breadcrumbs":14,"title":6},"38":{"body":3,"breadcrumbs":9,"title":1},"39":{"body":89,"breadcrumbs":9,"title":1},"4":{"body":62,"breadcrumbs":5,"title":4},"40":{"body":93,"breadcrumbs":9,"title":1},"41":{"body":8,"breadcrumbs":3,"title":1},"42":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":148,"breadcrumbs":5,"title":3},"44":{"body":79,"breadcrumbs":4,"title":2},"45":{"body":18,"breadcrumbs":5,"title":2},"46":{"body":33,"breadcrumbs":6,"title":3},"47":{"body":40,"breadcrumbs":7,"title":4},"48":{"body":25,"breadcrumbs":5,"title":2},"49":{"body":67,"breadcrumbs":6,"title":3},"5":{"body":40,"breadcrumbs":2,"title":1},"50":{"body":78,"breadcrumbs":3,"title":1},"51":{"body":30,"breadcrumbs":4,"title":2},"52":{"body":51,"breadcrumbs":5,"title":3},"53":{"body":16,"breadcrumbs":4,"title":2},"54":{"body":27,"breadcrumbs":3,"title":2},"55":{"body":30,"breadcrumbs":4,"title":2},"56":{"body":92,"breadcrumbs":3,"title":1},"57":{"body":89,"breadcrumbs":3,"title":1},"58":{"body":16,"breadcrumbs":3,"title":1},"59":{"body":128,"breadcrumbs":4,"title":1},"6":{"body":15,"breadcrumbs":2,"title":1},"60":{"body":26,"breadcrumbs":7,"title":2},"61":{"body":117,"breadcrumbs":6,"title":1},"62":{"body":52,"breadcrumbs":12,"title":7},"63":{"body":34,"breadcrumbs":10,"title":5},"64":{"body":37,"breadcrumbs":10,"title":5},"65":{"body":286,"breadcrumbs":11,"title":6},"66":{"body":79,"breadcrumbs":12,"title":7},"67":{"body":129,"breadcrumbs":11,"title":6},"68":{"body":19,"breadcrumbs":11,"title":4},"69":{"body":173,"breadcrumbs":11,"title":4},"7":{"body":47,"breadcrumbs":3,"title":2},"70":{"body":248,"breadcrumbs":12,"title":5},"71":{"body":18,"breadcrumbs":8,"title":1},"72":{"body":64,"breadcrumbs":12,"title":5},"73":{"body":44,"breadcrumbs":11,"title":4},"74":{"body":33,"breadcrumbs":16,"title":9},"75":{"body":0,"breadcrumbs":5,"title":1},"76":{"body":87,"breadcrumbs":8,"title":4},"77":{"body":26,"breadcrumbs":7,"title":3},"78":{"body":13,"breadcrumbs":7,"title":3},"79":{"body":10,"breadcrumbs":5,"title":1},"8":{"body":98,"breadcrumbs":6,"title":5},"80":{"body":61,"breadcrumbs":7,"title":2},"81":{"body":24,"breadcrumbs":11,"title":6},"82":{"body":14,"breadcrumbs":9,"title":4},"83":{"body":54,"breadcrumbs":8,"title":3},"84":{"body":75,"breadcrumbs":9,"title":3},"85":{"body":117,"breadcrumbs":9,"title":3},"86":{"body":28,"breadcrumbs":11,"title":5},"87":{"body":44,"breadcrumbs":9,"title":3},"88":{"body":84,"breadcrumbs":9,"title":3},"89":{"body":98,"breadcrumbs":8,"title":3},"9":{"body":74,"breadcrumbs":2,"title":1},"90":{"body":93,"breadcrumbs":8,"title":3},"91":{"body":68,"breadcrumbs":8,"title":3},"92":{"body":54,"breadcrumbs":8,"title":3},"93":{"body":115,"breadcrumbs":9,"title":2},"94":{"body":182,"breadcrumbs":11,"title":4},"95":{"body":0,"breadcrumbs":7,"title":2},"96":{"body":73,"breadcrumbs":2,"title":1},"97":{"body":70,"breadcrumbs":4,"title":3},"98":{"body":45,"breadcrumbs":5,"title":4},"99":{"body":34,"breadcrumbs":2,"title":1}},"docs":{"0":{"body":"Ghaf Framework is an open-source project that provides information about our work and studies in the security technologies field in the context of embedded virtualization. The applied software research supports Secure Systems Research Center (SSRC) focus areas. Ghaf Framework can be used to build the Ghaf Platform that will provide an edge device software architecture with key features such as modularity and scalability through virtualization, support research and development of zero trust architecture (ZTA), and allow for low maintenance efforts while keeping the main code base stable and secure. The SSRC team focus is to research on enhancing ZTA to scale horizontally across edge HW platforms (phones, drones, laptops, communication modules) and vertically across SW platforms (Linux, Android, Browser, applications). The Ghaf Platform is a baseline software platform for edge devices, utilizing a virtualized architecture for research and product development aiming to achieve the following core objectives: apply the general security principles of zero trust within the software architecture, and act as an enabler for ZTAs within organizations. Ghaf Platform Infrastructure","breadcrumbs":"About Ghaf » About Ghaf","id":"0","title":"About Ghaf"},"1":{"body":"Virtualization is one of the core enablers to transform the traditionally monolithic software stack within edge devices into isolated components with minimal TCB and clearly defined functionality. The Ghaf Platform utilizes a collection of virtual machines (VMs) to define a system. Contrary to the traditional monolithic OS, this concept allows to define and run host services in isolated environments, which breaks up the monolithic structure and allows for a modular system definition that is customizable for a specific use case. To this end, various applications and guest OSs can be deployed while simultaneously utilizing the Platform's features.","breadcrumbs":"About Ghaf » Embedded Virtualization","id":"1","title":"Embedded Virtualization"},"10":{"body":"Feature Status Reference Device Details minimal host 🚧 all See Minimal Host and PR #140 . netvm ✅ Orin See netvm . Passthrough with Wifi works but requires SSID/password configuration idsvm ✅ Orin Defensive security VM placeholder PR open guivm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device, other devices have Wayland compositor running on the host. appvm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device: chromium, GALA and zathura VMs. Requires guivm in place adminvm ✅ All Not started Inter VM comms - IP-based 🚧 All -debug-targets have network bridges to access VMs from host Inter VM comms - shared memory 🚧 All Inter VM Wayland 🚧 All Currently it is waypipe over SSH, for test and demo purpose only SW update 🚧 All A/B update tooling being evaluated USB passthrough 🚧 Orin No reference implementation integrated yet PCI passthrough ✅ All Used for reference in netvm on Orin UART passthrough 🚧 Orin See NVIDIA Jetson AGX Orin: UART Passthrough . Not integrated to any VM. ARM platform bus devices passthrough 🚧 Orin NVIDIA BPMP virtualization being developed","breadcrumbs":"Features » Target Architecture","id":"10","title":"Target Architecture"},"100":{"body":"Compartmentalization is the technique of separating parts of a system to decrease attack surface and prevent malfunctions from cascading in the system. In Ghaf architecture, there is a separate VM for every vital function of the system. Current implementation supports GUI VM, Networking VM and a couple of Application VMs, such as the Chromium web browser and the Zathura document viewer. The GUI VM owns a computer's GPU and performs desktop environment and application windows rendering. Wayland protocol for applications in this case is proxified by waypipe over SSH. This approach is used temporarily before moving to more sophisticated solutions. A VM compartmentalization requires all necessary devices passthrough in place. More specifically, you need to know the PCI VID and PID of a device and also its number on the PCI bus. In the case of a USB device passthrough, it is enough to know the device's VID and PID. For more information on actual implementation, see Ghaf as Library and Creating Application VM .","breadcrumbs":"Technologies » Compartmentalization » Compartmentalization","id":"100","title":"Compartmentalization"},"101":{"body":"Devices passthrough to virtual machines (VM) allows us to isolate the device drivers and their memory access in one or several VMs. This reduces the Trusted Code Base (TCB) in the host, due to the passed-through device drivers can be removed completely from the host kernel. Whether the device platform is x86 or ARM, the passthrough device needs to be bound to the VFIO device driver by the host system before it can be passed through to the guest environment. For more information, see Binding Device to VFIO Driver . Our current supported passthrough devices implementations: NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm","breadcrumbs":"Technologies » Passthrough » Devices Passthrough","id":"101","title":"Devices Passthrough"},"102":{"body":"An example of binding a PCI device to the VFIO driver manually: export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id Similar approach also works for platform devices. The device path for platform devices is /sys/bus/platform/devices/$DEVICE/. export DEVICE=\"31d0000.serial\"\necho vfio-platform > /sys/bus/platform/devices/$DEVICE/driver_override\necho \"$DEVICE\" > /sys/bus/platform/drivers/vfio-platform/bind","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Binding Devices to VFIO Driver to Allow Passthrough","id":"102","title":"Binding Devices to VFIO Driver to Allow Passthrough"},"103":{"body":"driverctl is an open-source device driver control utility for Linux systems. With driverctl it is easier to set up VFIO or change the driver for a device: export DEVICE=\"0001:01:00.0\"\ndriverctl --nosave set-override ${DEVICE} vfio-pci or for platform bus device passthrough export DEVICE=\"31d0000.serial\"\ndriverctl --nosave --bus platform set-override ${DEVICE} vfio-platform It is important to note that by default driverctl stores the set driver overrides and reactivates the override after a device reboot. With VFIO this can cause issues since some hardware devices may be required while the device starts up. This behavior can be effected by using the --nosave option as in the example above so that the override is reset back to default at reboot. The driverctl tool also features a way to list devices based on their bus type with the list-devices command. # Default usage of the tool is for pci bus\ndriverctl list-devices # Using command line option --bus platform sets the usage for platform bus\ndriverctl --bus platform list-devices driverctl can also reset the default driver by using the unset-override command. export DEVICE=\"0001:01:00.0\"\ndriverctl unset-override ${DEVICE}","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Using driverctl Package","id":"103","title":"Using driverctl Package"},"104":{"body":"This document describes the UART passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to guide more complex devices passthrough implementations.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough","id":"104","title":"NVIDIA Jetson AGX Orin: UART Passthrough"},"105":{"body":"There are eight UART units in the System on Chip (SoC) and two Server Base System Architecture (SBSA) UART units: The SoC UART units are named with an alphabetical suffix: UARTA, UARTB, UARTC, UARTD, UARTE, UARTF, UARTG, UARTH (which may be referred to as UART1, UART2, UART3, UART4, UART5, UART6, UART7, and UART8). The SBRA UART units are named UARTI and UARTJ. These units are pin-muxed with the UARTE and UARTC respectively. The following table describes the UART units mapping and connections: Device tree def. CPU pin SoC pin Connected to uarta: serial@3100000 UART1 UART1 40 pin header 3v3 uartb: serial@3110000 UART2 UART5 M.2 key E (WiFi card) uartc: serial@c280000 UART3 UART3 USB Debug ttyACM0 uartd: serial@3130000 UART4 UART4 Camera connector uarte: serial@3140000 Not mapped uartf: serial@3150000 Not mapped uartg: not on dtb UART7 UART7 Optional, USB Debug ttyACM1 uarth: serial@3170000 Not mapped uarti: serial@31d0000 UART5 UART2 USB Debug ttyACM1 uartj: serial@c270000 Not mapped Notes: The first column shows how the UART units are defined in the UART device tree file tegra234-soc-uart.dtsi [1] . The second and third columns show the CPU and SoC pin connections. Note that for UART2 and UART5 these are swapped. The pin mapping configuration is described in the file tegra234-mb1-bct-pinmux-p3701-0000.dtsi [2] . This device tree file is automatically generated by the macro Excel file Jetson_AGX_Orin_Series_Pinmux_Config_Template_1.5.xlsm which is available at the official Jetson Download Center as the Jetson AGX Orin Series Pinmux . The last column describes where the UART units are connected to the exterior. Only two UART units are connected to the micro USB debug interface. The UART7 is not connected by default but it can be connected to the debug interface ttyACM1 by swapping the fuse resistors (see Debug MCU page 7 on P3737_A04_Concept_schematics.pdf [3] ).","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UART Connections","id":"105","title":"UART Connections"},"106":{"body":"The UARTI unit was selected to do the first \"Hello world\" passthrough implementation as it does not show any dependencies on its device tree: uarti: serial@31d0000 { compatible = \"arm,sbsa-uart\"; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; };","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UARTI Selected for Passthrough","id":"106","title":"UARTI Selected for Passthrough"},"107":{"body":"To prepare the UARTI on the host for the passthrough: Modify the UARTI node in the tegra234-soc-uart.dtsi device tree file [1] : compatible: put a dummy driver associated to this node so that the kernel will not bind any driver to this UART unit. iommus: add the iommus field with the test stream ID TEGRA_SID_NISO1_SMMU_TEST which by default is not used by any other device. uarti: serial@31d0000 { compatible = \"arm,dummy\"; iommus = <&smmu_niso0 TEGRA_SID_NISO1_SMMU_TEST>; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; }; Include the modifications, compile the kernel to update the output DTB, and then flash it to the internal eMMC device tree A and B partitions with the following command: dd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p3\ndd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p6","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Host Device Tree","id":"107","title":"Host Device Tree"},"108":{"body":"The guest device tree is based on the device tree extracted from QEMU VM. To get the base QEMU device tree, run the following command: qemu-system-aarch64 -machine virt,accel=kvm,dumpdtb=virt.dtb -cpu host Add the passthrough devices inside the platform node to this device tree: platform@c000000 { interrupt-parent = <0x8001>; ranges = <0xc000000 0x00 0xc000000 0x2000000>; #address-cells = <0x01>; #size-cells = <0x01>; compatible = \"qemu,platform\\0simple-bus\"; uarti: serial@c000000 { compatible = \"arm,sbsa-uart\"; current-speed = <0x1c200>; interrupts = <0x00 0x70 0x04>; reg = <0x0c000000 0x10000>; status = \"okay\"; }; }; In this example, the uarti node was added to the platform node. For this node the interrupt number was replaced to 0x70 and reg address to the one that was obtained from the QEMU monitor command: info mtree -f .","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Guest Device Tree","id":"108","title":"Guest Device Tree"},"109":{"body":"To start the guest VM: Bind the UARTI to the VFIO driver: echo vfio-platform > /sys/bus/platform/devices/31d0000.serial/driver_override\necho 31d0000.serial > /sys/bus/platform/drivers/vfio-platform/bind The VFIO gives the user-level an access to the devices, in this case, QEMU. Connect the NVIDIA Jetson AGX Orin Debug USB to your PC and open the serial port ttyACM1 at 115200 bps. You can use picocom with the next command: picocom -b 115200 /dev/ttyACM1 Run the guest VM with the following QEMU command: qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-platform,host=31d0000.serial\\ -dtb uart.dtb \\ -append \"rootwait root=/dev/vda1 console=ttyAMA0\" When the guest VM is launched you can see the VM Linux command line in the opened ttyACM1 terminal. kernel_src/hardware/nvidia/soc/t23x/kernel-dts/tegra234-soc/tegra234-soc-uart.dtsi bootloader/t186ref/BCT/tegra234-mb1-bct-pinmux-p3701-0000.dtsi available in the BSP sources on: https://developer.nvidia.com/embedded/jetson-linux-r3521 Jetson_AGX_Orin_DevKit_Carrier_Board_Design_Files_A04_20221003/P3737_A04_Concept_schematics.pdf available in https://developer.nvidia.com/jetson-agx-orin-developer-kit-carrier-board-design-files-a04","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Starting Guest VM","id":"109","title":"Starting Guest VM"},"11":{"body":"Feature Status Reference Device Details Wayland-compositor 🚧 Orin, x86 Implemented for Lenovo X1 Chromium 🚧 Orin, x86 Implemented for Lenovo X1 Element 🚧 Orin, x86 On host Cloud Android (CVD) client application (GALA) 🚧 Orin, x86 Implemented for Lenovo X1 Virtualization control 🚧 All See vmd design .","breadcrumbs":"Features » Applications and VM Control","id":"11","title":"Applications and VM Control"},"110":{"body":"This document describes the PCIe passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to give an overview of passing through different PCIe devices and the limitations of PCIe in the board.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » NVIDIA Jetson AGX Orin: PCIe passthrough","id":"110","title":"NVIDIA Jetson AGX Orin: PCIe passthrough"},"111":{"body":"There are two (or actually three) PCIe slots in the Jetson AGX Orin board: One of the connectors is a full-size PCIe 8x slot located under a black plastic cover above the micro USB serial debug port on the side of the board. The other slot is a smaller M.2 slot that is located at the bottom of the board. By default, the slot is in use of the included Wi-Fi and Bluetooth module. The third slot is actually an NVMe slot which can be used to add an NVMe SSD to the board. For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. When using one of the slots: First and foremost, always turn off and disconnect any power sources from the board and its peripherals when connecting or disconnecting devices to any of the PCIe buses connect. When adding or removing devices to the board, there is always a risk of setting off an electrical discharge in one of the components which may damage the connected device or the board itself. Full-Size PCIe Slot The full-size PCIe connector is under the black plastic cover on one of the sides of the device. The cover is held in place with a fairly strong magnet. There is a small connector ribbon and a few delicate wires going from the board internals to a Wi-Fi antenna on the cover. TIP: Make sure to remove the cover carefully for not ripping the whole cover off along with the antenna cables. The PCIe slot is simular to one inside a desktop computer. One key difference: the Jetson AGX Orin board has limited 12V power output capabilities and can only output a maximum of 40W power to its PCIe slot. Regular desktop PCIe slot can output 75W at 12V so some more power-hungry PCIe cards [1] may not work with the Jetson AGX Orin board. There may also be a risk of damaging the board if a card tries to pull too much power from the PCIe socket. TIP: We recommend to check carefully the power requirements of a device before turning the device on. A good rule of thumb might be if the device has a cooler to actively cool it down then some care should be taken before starting to use the card. Some trials have been done with GPU devices that use at maximum 30-34W power. The devices seem to work well in Jetson AGX Orin, but it is difficult to say how much power the card actually pulls from the slot at any given time. No real performance or stress tests have been done but under usual GUI and simple 3d application usage the cards (NVIDIA Quadro P1000 and NVIDIA Quadro T600) seem to work fine. PCIe M.2 Slot The PCIe M.2 slot with key type A+E is at the bottom of the board. By default, this slot is in use of the internal Wi-Fi and Bluetooth card. There are different types of M.2 slots all of which are not compatible with one another. The slot in Jetson AGX Orin is type A+E, and it supports PCIe 2x and USB transport buses. PCIe M.2 NVMe for SSD The third slot is M.2 NVMe 2280 (22 mm width and 80 mm length) and can be used for NVMe SSD. Passing through this interface has not been tested as the SSD is in most cases used by the host.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » PCIe Slots in NVIDIA Jetson AGX Orin","id":"111","title":"PCIe Slots in NVIDIA Jetson AGX Orin"},"112":{"body":"As in the UART Passthrough , the default device tree requires some modifications. With the default configuration, the PCI devices are set to the same VFIO group as the PCI bus itself. The trouble here is that the PCI bus is a platform bus device which is a bit tricky to pass through to the guest. It is possible to pass through only the individual PCI devices and not the whole bus. To pass through individual PCI devices one by one, set the devices in their individual VFIO groups or remove the PCI bus from the same VFIO group: /* * Modify the 'pcie_c1_rp' pci-e bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the m2 pci device alone in the group. * This change is for the m2 pci-e \"wifi\" slot. */\n&pcie_c1_rp { /delete-property/ iommus;\n}; /* * Modify the 'pci_c5_rp' pci bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the pci device alone in the group. * This change is for the full size pci-e slot. */\n&pcie_c5_rp { /delete-property/ iommus;\n};","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Enabling PCIe Devices for VFIO","id":"112","title":"Enabling PCIe Devices for VFIO"},"113":{"body":"To set up the device for VFIO, unload the device driver and then replac it with the vfio-pci driver. The example below can be used for a device in the PCI bus 0001. The device 0001:01:00.0 in the first bus is the Jetson AGX Orin board with the M.2 Wi-Fi card. The full size PCI bus id is 0005. It is possible that a single PCI card contains multiple devices. In that case, all the devices need to be passed through together as they are in the same VFIO group. Usually the graphics card also contains some sound output device as a separate device. export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id In case of success, this device is bound to VFIO. The VFIO nodes are usually owned by the root and in some cases may be group accessible by the VFIO group. To use the VFIO devices, the user who starts QEMU needs access to the VFIO device node: # List of vfio device nodes\nls /dev/vfio/ # List of devices within each iommu group\nls /sys/kernel/iommu_groups//devices/ You can also check the kernel logs to know which device belongs to which VFIO IOMMU group.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Binding Device for VFIO","id":"113","title":"Binding Device for VFIO"},"114":{"body":"After binding a device to VFIO, you can access the device in a VM. To do so, use a command line argument (as in the example) for the PCI device to pass through to QEMU. It does not matter which VFIO node ID was assigned to the device earlier, as long as all the devices with the same VFIO node are passed through, and none of the devices in the same group is left behind. The QEMU command line argument for passthrough uses the PCIe device ID as identifier for the devices. Each device which is passed through needs its own QEMU -device argument as below: -device vfio-pci,host=\"0001:01:00.0\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Starting Guest VM","id":"114","title":"Starting Guest VM"},"115":{"body":"Modern PCI devices use the Message Signaled Interrupts (MSI) method to limit the need for physical hardware interrupt pins. As passing through PCI or any other devices is fairly new to QEMU, it seems MSI in ARM64 is not supported by QEMU [2] . To get interrupts to work in the guest, we need to signal the kernel to disable MSI for our passthrough device. There are two ways of doing it: To modify the host device tree by disabling MSI completely from the whole PCI bus. To disable MSI only from the guest by using the pci=nomsi kernel argument with QEMU. Disabling MSI is not required for the x86 QEMU guest as it has MSI support. The command below is provided only as a test example for passing through a PCI device for AArch64 [3] : qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-pci,host=0001:01:00.0\\ -append \"rootwait root=/dev/vda1 console=ttyAMA0 pci=nomsi\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » ARM64 PCI Device Interrupts","id":"115","title":"ARM64 PCI Device Interrupts"},"116":{"body":"The information above is enough for x86 and also for ARM64 processor architecture when using some simple or a bit older PCIe devices. A bit more complex PCIe device which has a larger internal RAM pool needs some modifications with QEMU sources. The problem with passing through such devices is that the memory address range reserved for PCIe devices is not large enough to map the internal memory of the PCI device. Some graphics cards have several gigabytes of internal RAM which needs to be accessible for the VM guest. You can extend the VIRT_PCIE_ECAM memory address range in the QEMU source code to allow mapping the whole PCIe device memory range. In most cases a few gigabytes is sufficient: diff --git a/hw/arm/virt.c b/hw/arm/virt.c\nindex ac626b3bef..d6fb597aee 100644\n--- a/hw/arm/virt.c\n+++ b/hw/arm/virt.c\n@@ -161,9 +161,10 @@ static const MemMapEntry base_memmap[] = { [VIRT_SECURE_MEM] = { 0x0e000000, 0x01000000 }, [VIRT_PCIE_MMIO] = { 0x10000000, 0x2eff0000 }, [VIRT_PCIE_PIO] = { 0x3eff0000, 0x00010000 },\n- [VIRT_PCIE_ECAM] = { 0x3f000000, 0x01000000 },\n+ /* ..Reserved 11Gb range for pcie = 11*1024*1024*1024b */\n+ [VIRT_PCIE_ECAM] = { 0x40000000, 0x2C0000000 }, /* Actual RAM size depends on initial RAM and device memory settings */\n- [VIRT_MEM] = { GiB, LEGACY_RAMLIMIT_BYTES },\n+ [VIRT_MEM] = { 0x300000000, LEGACY_RAMLIMIT_BYTES }, }; After these changes, compile QEMU and install it on the host system. An example of a power-hungry card is a graphics accelerator card. Our approach of using ARM as a VM host with passthroughs fairly new so it is hard to search for help or references online, but this bug qemu-system-aarch64 error seems to be close enough. The main hint of MSI not being fully supported yet by QEMU on ARM64 comes from the case when the device starts working only with MSI disabled from the guest kernel argument. It may require some changes for real usage.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » More Work for ARM64","id":"116","title":"More Work for ARM64"},"117":{"body":"","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » x86 PCIe Device Passthrough with crosvm","id":"117","title":"x86 PCIe Device Passthrough with crosvm"},"118":{"body":"As with other passthroughs, first, we need to set the target device to use VFIO driver. This can be done manually or by using the driverctl tool as below. Running driverctl requires root permissions. export BUS=\"0000:01:00.0\"\ndriverctl --nosave set-override ${BUS} vfio-pci Let's consider the example of starting crosvm. In some cases, crosvm may need privileged permissions to work properly. This applies specially for passthrough hardware devices as vfio devices are generally owned by the root user or the vfio group. For simplicity, it may be easier to run crosvm as the root user but it is be possible to set up correct permissions so that running as root is not needed. Crosvm expects the device's system path as its --vfio argument. The device identifier is different when comparing how passthrough devices are refrenced in QEMU. Using the guest-address option is not strictly required by the source documentation but it gives a bit more control for handling the passthrough device on the guest side. export BUS=\"0000:01:00.0\"\nexport GUESTBUS=\"00:08.0\"\n./target/debug/crosvm run \\ --mem=8192 \\ --block ./ubuntu-22.10.img \\ -i /boot/initrd.img-5.19.0-31-generic /boot/vmlinuz-5.19.0-31-generic \\ -p \"root=/dev/vda2 loglevel=8 earlycon earlyprintk debug\" \\ --vfio /sys/bus/pci/devices/${BUS},guest-address=${GUESTBUS},iommu=viommu","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Enabling PCIe Devices for VFIO with driverctl","id":"118","title":"Enabling PCIe Devices for VFIO with driverctl"},"119":{"body":"The driverctl tool can reset the original device driver afterward: export BUS=\"0000:01:00.0\"\ndriverctl unset-override ${BUS}","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Reseting Driver to Original State Afterwards","id":"119","title":"Reseting Driver to Original State Afterwards"},"12":{"body":"See discussion for the outline of next steps Outline of next phases","breadcrumbs":"Features » Next Steps","id":"12","title":"Next Steps"},"120":{"body":"Boot and Power Management Processor (BPMP) is the NVIDIA processor, which is designed for booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. The BPMP virtualization on the NVIDIA Jetson AGX Orin involves enabling VMs to access specific BPMP resources. This capability is crucial for passing through platform devices where control over resets and clocks configurations is required.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization","id":"120","title":"NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization"},"121":{"body":"Resource Access : The BPMP virtualization allows VMs to access and manage resources such as device clocks and resets. Foundation for Device Virtualization : This setup lays the groundwork for future virtualization of more complex devices like GPUs. Module Introduction : A new virtualization module is introduced, divided into common and host modules with a plan to add a guest module for NixOS-based guests. Device Tree Configurations : Modifications are made with patching to support virtualization features. Compatibility : The current implementation supports a Ghaf host with an Ubuntu guest.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Architectural Overview","id":"121","title":"Architectural Overview"},"122":{"body":"The current implementation includes a host configuration for the UARTA passthrough as a test case demonstrating the practical application of the BPMP virtualization. At the same time, the current implementation still requires manually built Ubuntu guest. Work continues to integrate microvm.nix declared guest that supports NVIDIA BPMP virtualization with the UARTA passthrough demo. This work is generally important for future NVIDIA Jetson platform bus GPU passthrough. With this feature it is possible to virtualize the NVIDIA-Jetson-integrated GPU connected to the platform bus.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Use Cases","id":"122","title":"Use Cases"},"123":{"body":"Enable NVIDIA BPMP virtualization on a Ghaf host for an NVIDIA Jetson-target using the following configuration options: hardware.nvidia = { virtualization.enable = true; passthroughs.uarta.enable = true;\n}; IMPORTANT: These options are integrated to NVIDIA Jetson Orin targets but disabled by default until the implementation is finished. Build the target and boot the image. You can write the image to an SSD for testing with a recent NVIDIA UEFI FW.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin","id":"123","title":"Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin"},"124":{"body":"","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Testing","id":"124","title":"Testing"},"125":{"body":"Check the bpmp-host device: [ghaf@ghaf-host:~]$ ls /dev | grep bpmp-host\nbpmp-host Check that vfio-platform binding is successful: ghaf@ghaf-host:~]$ ls -l /sys/bus/platform/drivers/vfio-platform/3100000.serial\nlrwxrwxrwx 1 root root 0 Dec 8 08:26 /sys/bus/platform/drivers/vfio-platform/3100000.serial -> ../../../../devices/platform/3100000.serial","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Host Testing","id":"125","title":"Host Testing"},"126":{"body":"UARTA is an UART unit with a port A connection. For more information, see UART Connections . Build a guest kernel according to UARTA passthrough instructions [1] and use the following script to start the VM: TIP: IMG is the kernel image and FS the rootfs. IMG=$1\nFS=$2 qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1G \\ -no-reboot \\ -kernel $IMG \\ -drive file=$FS,if=virtio,format=qcow2 \\ -net user,hostfwd=tcp::2222-:22 -net nic \\ -device vfio-platform,host=3100000.serial \\ -dtb virt.dtb \\ -append \"rootwait root=/dev/vda console=ttyAMA0\" With UARTA connected start Minicom on the working machine: minicom -b 9600 -D /dev/ttyUSB0 Test UARTA by echoing a string to the correct tty in the VM: echo 123 > /dev/ttyTHS0","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Guest for UARTA Testing","id":"126","title":"Guest for UARTA Testing"},"127":{"body":"NVIDIA Jetson AGX Orin: UART Passthrough [1] That documentation is in the bpmp-virt side repository, as that approach does not use microvm.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Related Topics","id":"127","title":"Related Topics"},"128":{"body":"microvm is the component defining a VM's launch services generated for systemd. It inputs a set of options mapped to the hypervisor command line call. Nevertheless, it may happen that some hypervisor options are not supported by microvm. For example, adding specific devices. This document considers such cases.","breadcrumbs":"Technologies » Hypervisor Options » Ghaf-Specific microvm Hypervisor Options","id":"128","title":"Ghaf-Specific microvm Hypervisor Options"},"129":{"body":"A VM is defined under Ghaf’s subdirectory microvmConfigurations/VM_NAME/default.nix, for example: modules/virtualization/microvm/netvm.nix\nhttps://github.com/tiiuae/ghaf/blob/main/modules/virtualization/microvm/netvm.nix This file contains hypervisor’s options for running the VM. For each hypervisor there is a bunch of microvm’s defined options: https://astro.github.io/microvm.nix/options.html The way they are processed can be found in corresponding .nix files (runners) in the astro/microvm.nix repository: crosvm.nix qemu.nix The formula for setting hypervisor option is microvm.option = value;. For example: microvm.mem = 512;\nmicrovm.vcpu = 2;","breadcrumbs":"Technologies » Hypervisor Options » Options Definitions","id":"129","title":"Options Definitions"},"13":{"body":"The main architectural concept of the Ghaf Platform is to break up the traditional monolithic structure to modularized components, virtual machines (VM). These VMs on hardened host OS implement the Ghaf edge virtualization platform. Embedded virtualization builds on cloud technologies in the development of end-to-end security. With hardware support for virtualization, we provide a hardened system of a small trusted computing base (TCB)—thin host—that enables isolation of use cases and their resources. Use cases are protected in guest virtual machines (VMs). Embedded targets are small devices (personal or headless) instead of high-performance cloud servers. Our scope is illustrated in the following diagram. For more information, see stack . Scope! If you are interested in why we do something this way instead of that way, see Architecture Decision Records . The Ghaf Platform components are used in reference configurations to build images for reference devices. For more information, see Reference Implementations .","breadcrumbs":"Architecture » Architecture","id":"13","title":"Architecture"},"130":{"body":"As a result of building the Ghaf tree, command lines for starting the VMs are generated. They reflect all parameters specified above—both those specified explicitly and defaults. They are located under the Ghaf’s /var/lib/microvms/ directory. ls /var/lib/microvms/memsharevm-vm-debug/current/bin microvm-balloon\nmicrovm-console\nmicrovm-run\nmicrovm-shutdown The command which starts the hypervisor is the microvm-run bash script. Here is a sample generated: #! /nix/store/96ky1zdkpq871h2dlk198fz0zvklr1dr-bash-5.1-p16/bin/bash -e\nexec '/nix/store/zsf59dn5sak8pbq4l3g5kqp7adyv3fph-qemu-host-cpu-only-7.1.0/bin/qemu-system-x86_64' '-\nname' 'memshare' '-M' 'microvm,accel=kvm:tcg,x-option-roms=off,isa-serial=off,pit=off,pic=off,rtc=off,\nmem-merge=on' '-m' '2512' '-cpu' 'host' '-smp' '17' '-machine' 'virt,accel=kvm' '-nodefaults' '-no-\nuser-config' '-nographic' '-no-reboot' '-serial' 'null' '-device' 'virtio-serial-device' '-chardev'\n'pty,id=con0' '-device' 'virtconsole,chardev=con0' '-chardev' 'stdio,mux=on,id=con1,signal=off' '-\ndevice' 'virtconsole,chardev=con1' '-device' 'virtio-rng-device' '-drive' 'id=root,format=raw,\nmedia=cdrom,file=/nix/store/xnnqb3sb1l4kbx7s0ijazph5r0c0xhx5-rootfs.squashfs,if=none,aio=io_uring' '-\ndevice' 'virtio-blk-device,drive=root' '-kernel' '/nix/store/ds5cmyby0p4ikw91afmrzihkz351kls7-linux-\n6.2/bzImage' '-append' 'console=hvc1 console=hvc0 reboot=t panic=-1 root=/dev/vda ro init=/init\ndevtmpfs.mount=0 stage2init=/nix/store/0mbhpna8hplbsaz1il3n99f0zincr4vs-nixos-system-memshare-\n22.11.20230310.824f886/init boot.panic_on_fail loglevel=4 regInfo=/nix/store\n/j8id92qsd58qjnzq4xz6v5l38rlpq6is-closure-info/registration' '-sandbox' 'on' '-qmp' 'unix:memshare.\nsock,server,nowait' '-device' 'virtio-balloon' '--option 1 --option 2' for the input parameters: microvm.hypervisor = \"qemu\"; Note that microvm sets several others. microvm.mem = 2000;\nmicrovm.balloonMem = 512;\nmicrovm.vcpu = 17;\nmicrovm.qemu.extraArgs = [ \"--option 1 --option 2\" ];","breadcrumbs":"Technologies » Hypervisor Options » Generated Hypervisor Start Commands","id":"130","title":"Generated Hypervisor Start Commands"},"131":{"body":"microvm may not supply parameters for all possible options as adding specific devices. Processing of all microvm configuration options is done in the mentioned above hypervisor’s runner .nix file. The runners support the extraArgs parameter. It allows setting any option in QEMU command line invocation. Its value is a list of strings. In this example the following extraArgs definition: microvm.qemu.extraArgs = [\n\"-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img\"\n\"-device virtio-pmem-pci,memdev=mem1,id=nv1\"\n]; results in the generated command line parameters: '-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img' '-device v\nirtio-pmem-pci,memdev=mem1,id=nv1' Support for the crosvm’s extraArgs parameter was added on April 7, 2023. Make sure to verify that your flakes.lock file refers to the proper version.","breadcrumbs":"Technologies » Hypervisor Options » Adding Option to Hypervisor Command Line","id":"131","title":"Adding Option to Hypervisor Command Line"},"132":{"body":"Ghaf Framework uses a CI/CD (Continuous Integration and Continuous Delivery) approach that aims to automate the process of building, testing, and deploying software. Our goal is to have the ability to deploy code quickly and safely: once a build is deployed, the next build undergoes testing, while the latest build is being coded. Currently, Continuous Deployment is not set up.","breadcrumbs":"Continuous Integration and Distribution » Continuous Integration and Distribution","id":"132","title":"Continuous Integration and Distribution"},"133":{"body":"CI/CD Architecture The software delivery pipeline consists of several stages: Contributors make changes in the code and create a pull/merge request to merge changes from one personal fork or branch into the upstream repository/branch. Builder Controller checks source code repositories for changes and fetches them. Builder Controller arranges builds on Remote Builders to make disk images and other release artifacts. After the building is done, Remote Builder sends disk images to Builder Controller to create provenance files and sign disk images and provenance files. On build failure, Builder Controller sends failure notifications to Message Service. Builder Controller uploads all build artifacts to Binary Cache and disk images to Web Server. Test Automation fetches disk images from Binary Cache and runs the hardware test on them. Test Automation uploads test reports to Web Server. Users can download images from Web Server: release images https://vedenemo.dev/files/releases/ images for testing https://vedenemo.dev/files/build_reports/ .","breadcrumbs":"Continuous Integration and Distribution » General Process","id":"133","title":"General Process"},"134":{"body":"To be aware of what is exactly in our software supply chain, it is reviewed for security issues and known vulnerabilities. Supply Chain Attacks Diagram We implement a supply chain security (SCS) — process of securing the machinery of the development, building, and release environment. That means that every component that a software artifact might be touching on its way from the developer to the consumer will be secured. The software artifact should be encrypted on each possible transition phase and its integrity should be verified at each destination. Each build should be accompanied by means of software bill of materials (SBOM) , identifying all the components that the software package consists of. SBOM containing reference to each dependency, its source and version together with provenance, containing build information are collected at the build time, signed, and used for vulnerability analysis during the next steps. The software artifact, SBOM, and provenance are signed by the build machinery at the build time, and the signature is verifiable at every destination of the package. The certificates that are used for signing and verification are provided by the public key infrastructure (PKI) system and are signed by the same root certificate authority (CA) . That allows you to confirm the author of the signature (build machinery) and guarantees that the package has not been tampered with since the build time.","breadcrumbs":"Supply Chain Security » Supply Chain Security","id":"134","title":"Supply Chain Security"},"135":{"body":"SLSA Framework Basic Security Measures SBOM Public Key Infrastructure Security Fix Automation","breadcrumbs":"Supply Chain Security » In This Chapter","id":"135","title":"In This Chapter"},"136":{"body":"Supply chain Levels for Software Artifacts (SLSA) is a security framework for tampering prevention, integrity improvement, and securing packages and infrastructure of a project. For more information about the SLSA framework, see the offical website https://slsa.dev .","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Framework","id":"136","title":"SLSA Framework"},"137":{"body":"Immutable reference: An identifier, guaranteed to always point to the same, immutable artifact. Provenance: Metadata about how an artifact was produced. Revision: An immutable, coherent state of a source.","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Terminology","id":"137","title":"SLSA Terminology"},"138":{"body":"One of the requirements for the solution is to reach SLSA Level 4 and even go beyond that. This requires a lot of process changes as well as technical work. The SLSA model consists of 4 levels, offering an incremental level of anti-tampering protection. Levels 1-3 represent milestones with certain integrity guarantees, whereas level 4 is an ideal end state. Level 0 means no SLSA compliance and no guarantees are given. Level 1 demands a fully scripted / automated build process and provenance generation. It offers basic confidence in the origin of the software but doesn’t provide any tamper resistance. Level 2 Introduces authenticated provenance generated by a hosted build at the same time demanding version control system usage. Provenance prevents tampering and offers trust in the build service. Level 3 offers auditability of the source and the integrity of the provenance. Much stronger tampering protection is provided by preventing specific classes of threats such as cross-build contamination. Level 4 requires two-peer source code review and a hermetic, reproducible build process. Overall Level 4 offers a high degree of confidence in the anti-tampering protection of the software. SLSA level is not transitive, thus level of the artifact is not dependent on the level of dependencies, which are expected to have their own SLSA levels. This makes it possible to build a Level 4 artifact from Level 0 dependencies.","breadcrumbs":"Supply Chain Security » SLSA Framework » Levels of Assurance","id":"138","title":"Levels of Assurance"},"139":{"body":"Requirements Level 1 Level 2 Level 3 Level 4 Source — Version controlled ✓ ✓ ✓ Source — Verified history ✓ ✓ Source — Retained indefinitely ✓ ✓ Source — Two-person reviewed ✓ Build — Scripted build ✓ ✓ ✓ ✓ Build — Build service ✓ ✓ ✓ Build — Build as code ✓ ✓ Build — Ephemeral environment ✓ ✓ Build — Isolated ✓ ✓ Build — Parameterless ✓ Build — Hermetic ✓ Build — Reproducible ○ Provenance — Available ✓ ✓ ✓ ✓ Provenance — Authenticated ✓ ✓ ✓ Provenance — Service generated ✓ ✓ ✓ Provenance — Non-falsifiable ✓ ✓ Provenance — Dependencies complete ✓ Common — Security ✓ Common — Access ✓ Common — Superusers ✓ ✓ — required ○ — required unless justified otherwise empty cell — not required","breadcrumbs":"Supply Chain Security » SLSA Framework » Requirements","id":"139","title":"Requirements"},"14":{"body":"Architectural Variants Architecture Decision Records Minimal Host Networking VM Platform Bus for Rust VMM Stack","breadcrumbs":"Architecture » In This Chapter","id":"14","title":"In This Chapter"},"140":{"body":"","breadcrumbs":"Supply Chain Security » Basic Security Measures » Basic Security Measures","id":"140","title":"Basic Security Measures"},"141":{"body":"The source code security is based on the fact that the source code is two-person reviewed, version controlled, and the history is verified and retained indefinitely.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Source Code / Version Control Security","id":"141","title":"Source Code / Version Control Security"},"142":{"body":"All the commits to repositories must be GPG-signed. This can be achieved by enabling GPG commit signatures in the config: git config --global commit.gpgsign true For more detailed information, see the Signing commits article of the GitHub Docs.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Commit Signing","id":"142","title":"Commit Signing"},"143":{"body":"In the case of GitHub the following settings should be considered: Require pull request reviews before merging (req: two-person reviewed source). Require status checks before merging. Require conversation resolution before merging. Require signed commits. Deletions should be forbidden (req: immutable history).","breadcrumbs":"Supply Chain Security » Basic Security Measures » Branch Protection","id":"143","title":"Branch Protection"},"144":{"body":"Software signing is an important measure to validate the author and ensure that the code has not been altered on the way from the developer to the customer. Nix tooling is offering means to sign the derivations using libsodium with EdDSA, however, as the modular system is assumed, scripts need to be developed to support signing mechanisms in an absence of Nix tooling. By default, the software image is signed only at the binary cache per request. Which leaves the path from Hydra to the binary cache unsecured. The problem can be resolved in two ways: Enabling the image signing on Hydra Shared Nix Store","breadcrumbs":"Supply Chain Security » Basic Security Measures » Software Signing","id":"144","title":"Software Signing"},"145":{"body":"Enabling the image signing on Hydra requires some extra work due to the lack of well-documented support of image signing at Hydra at the time of writing this document. As already mentioned, NixOS is using libsodium-based EdDSA solution for image signing. So similar scripts can be implemented. For example, in Python by using existing libsodium bindings, such as PyNaCl. Enabling Image Signing on Hydra","breadcrumbs":"Supply Chain Security » Basic Security Measures » Enabling Image Signing on Hydra","id":"145","title":"Enabling Image Signing on Hydra"},"146":{"body":"The shared NixStore option is rather straightforward if Hydra is combined with the binary cache. This kind of setup is lacking the extra transition path. Thus the packages signed by the binary cache will be served straight from the Hydra NixStore. Shared NixStore Solution","breadcrumbs":"Supply Chain Security » Basic Security Measures » Shared Nix Store","id":"146","title":"Shared Nix Store"},"147":{"body":"All the data should be transported over secure encrypted channels. Since all the transportation is done over TCP/IP protocol stack, it is possible to use native solutions like TLS to secure the traffic between the nodes. Version 1.2 is a minimum requirement.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Data Encryption in Transit","id":"147","title":"Data Encryption in Transit"},"148":{"body":"Software bill of materials (SBOM) is a formal, machine-readable document that provides a list of software components that make up the target software and all its dependencies.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » Software Bill of Materials (SBOM)","id":"148","title":"Software Bill of Materials (SBOM)"},"149":{"body":"There are three main delivery formats and specifications for SBOM: CycloneDX, SPDX, and SWID. CycloneDX is an open-source standard with origins in the OWASP community. The specification's original focus is on security. There's a large growing community and open source tooling that support CycloneDX format. SPDX is also a product of an open-source community, with the original focus on licensing. SPDX is run and maintained by Linux Foundation . Similarly to CycloneDX, many open-source tools support the SPDX format. SWID is a standard that originates from NIST . SWID tags aim to help organizations create accurate software inventories. While SWID can serve as an SBOM too, it is not as widely used SBOM format in open source as the two other specifications.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Formats and Specifications","id":"149","title":"SBOM Formats and Specifications"},"15":{"body":"The main scope of the Ghaf platform is edge virtualization. However, to support modular development and testing of the platform, variants are supported with the following definitions: Default A default variant. Supports minimal host , GUI VM [1] and netvm . May host other VMs. For more information, see Stack . Headless A variant with minimal host and netvm . May host other VMs but does not have GUI VM or graphics stack on a host. Host only A variant with minimal host only . A user can manually install software to a host, including VMs (if supported by hardware). No virtualization A variant for hardware with no support for virtualization. May run any software, similar to popular Linux distributions, but cannot support guest virtual machines. May host any software deployed directly on a host. Variant Name Headless Graphics VMs Devices Default No GUI VM [1] Supported Jetson, generic x86 Headless Yes No Supported Jetson, generic x86 Host Only Yes No May be supported but not included Jetson, generic x86 No Virtualization Yes or no Native on host Not supported Raspberry Pi, RISC-V [1] As of early 2023, the graphics stack is deployed on a host to support application development. Work is ongoing to define the GUI VM and isolate graphics with GPU passthrough.","breadcrumbs":"Architecture » Architectural Variants » Architectural Variants","id":"15","title":"Architectural Variants"},"150":{"body":"Ghaf framework will use SBOMs for: Vulnerability identification: automatic correlation of SBOM against known vulnerabilities. Vulnerability remediation: automatic process to suggest fixes for identified vulnerabilities. Dependency analysis: categorization of open-source and closed source software dependencies. Dependency analysis: creation of a directed acyclic graph License compliance: know and comply with the license obligations. Market signal: publish SBOM together with other release artifacts.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Usage in Ghaf","id":"150","title":"SBOM Usage in Ghaf"},"151":{"body":"Ghaf is based on Nix, therefore, the selected SBOM tooling needs to support creating SBOMs for nix artifacts. As part of the Ghaf project, we have created the sbomnix tool to support SBOM generation for Ghaf and, more generally, for any Nix-based targets. For more details on the SBOM tooling in Ghaf, see sbomnix and nixgraph . sbomnix supports CycloneDX as well as SPDX SBOM specification.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Tooling in Ghaf","id":"151","title":"SBOM Tooling in Ghaf"},"152":{"body":"https://ntia.gov/page/software-bill-materials https://slsa.dev/blog/2022/05/slsa-sbom https://fossa.com/blog/software-bill-of-materials-formats-use-cases-tools https://www.legitsecurity.com/blog/what-is-an-sbom-sbom-explained-in-5-minutes","breadcrumbs":"Supply Chain Security » Software Bill of Materials » References","id":"152","title":"References"},"153":{"body":"In the SCS context, a public key infrastructure (PKI) term refers to a system for the creation, storage, and distribution of digital certificates which are used to verify that a particular key belongs to a certain entity. PKI creates and manages a hierarchical set of digital certificates which map public keys to certain entities. Storage and revocation methodologies are to be defined. The PKI of SCS should consist of: Certificate authority (CA) for storing, issuing, and signing the digital certificates. Registration authority (RA) for requesting entity identity verification. Central directory for the secure storage of the keys. Certificate Management System (CMS) for managing access to stored certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Public Key Infrastructure","id":"153","title":"Public Key Infrastructure"},"154":{"body":"PCA enables the creation of private certificate authority hierarchies, consisting of Root and Subordinate CAs. It issues end-entity X.509 certificates, that are used for: Encrypted TLS communication channels (data encryption in transit) Code and image signing PCA can be established in the cloud or on-premises. Initially, the OpenSSL-based solution deployed on-premises is assumed, however, some of the target projects might consider using commercial cloud solutions.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Private Certificate Authority (PCA)","id":"154","title":"Private Certificate Authority (PCA)"},"155":{"body":"On-premises solution can be further improved by adding a Hardware Security Module (HSM). It is a physical device for managing cryptographic material such as digital keys. HSM can be also used to perform cryptographic operations such as digital signing, encryption, and decryption. The HSM contains one or more Secure Cryptoprocessors that are dedicated microprocessors optimized for carrying out cryptographic operations. One example of affordable HSM solutions is YubiHSM developed by Yubico.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Hardware Security Module","id":"155","title":"Hardware Security Module"},"156":{"body":"The following HSM solutions are considered for the Ghaf project: YubiHSM2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM The following table provides feature comparison of the proposed solutions: Since the feature list is quite extensive, the table is limited to the features that are either planned to be used in Ghaf or might benefit the project in the future. Feature YubiHSM 2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM Secure key storage ✓ ✓ ✓ ✓ ECC ✓ ✓ ✓ ✓ EdDSA (ed25519) ✓ ? ECDSA ✓ ✓ ✓ ✓ RSA ✓ ✓ ✓ PKCS#11 interface ✓ ✓ ✓ ✓ Network shareable ✓ ✓ M of N wrap rule ✓ ✓ Tamper evident audit logging ✓ Storage capacity 128KB, 255xAny ECC 76KB, 35xECC-512 9.7Kb, 16 slots Price 650EUR (VAT 0%) 99 EUR FOSS HW Costs YubiHSM2 is the leading solution considering its cryptographic capabilities. However, taking into account quite modest needs of SCS, NitrokeyHSM2 represents an adequate option. The main benefit of YubiHSM2 from SCS perspective is its native support of EdDSA-curve25519, which is the one that NixOS is using for package signing. Thus YubiHSM2 could be used directly with NixOS. However, as the package doesn't change in transit from the Build System to the Consumer, usage of inbuilt tooling is not always necessary. BreadboardHSM solution is based on Microchip ATECC608B (TrustFLEX + cryptoauthlib + gtutls), though development work is still ongoing at the time of writing this document. The SoftHSMv2 and BreadboardHSM are taken for comparison showing what can be achieved using FOSS variants.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » HSM Variants for Consideration","id":"156","title":"HSM Variants for Consideration"},"157":{"body":"CA usually consists of: Root CA - the root of trust of the entire PKI, for issuing and signing the certificates used by other CAs. Subordinate CA for issuing end-entity certificates. There are three types of hierarchies: one-tier, two-tier, and three-tier. The hierarchy can be chosen based on the target project's needs and complexity. A one-tier hierarchy is not considered for any production usage due to the low security, as the compromise of a single CA leads to a compromise of the entire PKI. In a two-tier hierarchy, the Root CA and issuing (Subordinate) CAs are separated for increasing the security level. This is the simplest production level hierarchy allowing to keep Root CA at the most secure and restrictive levels, yet making subordinate CA access slightly more permissive. This hierarchy is most likely sufficient for most of the target projects. In a three-tier CA, an intermediate CA is placed between the Root CA and the Subordinate (issuing) CA. This is done to separate the Root CA from low-level CA operations. The middle layer (intermediate CA) is only used to sign Subordinate CAs that issue the end-entity certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » CA Hierarchy Options","id":"157","title":"CA Hierarchy Options"},"158":{"body":"The following diagram describes the proposed CA for the SCS. The three-tier CA is chosen based on the high-security level and the potential need to scale it to several projects, later on, keeping the main control under the same Root CA. Proposed CA","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Proposed CA Hierarchy","id":"158","title":"Proposed CA Hierarchy"},"159":{"body":"The Nix community is able to identify and fix security issues relatively quickly. At the same time, the community process to ensure critical security fixes are included in nixpkgs is unclear or unspecified. Indeed, Ghaf should not solely rely on the community to provide security fixes but take action to understand the vulnerabilities that impact Ghaf and take an active role in fixing such issues.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Security Fix Automation","id":"159","title":"Security Fix Automation"},"16":{"body":"Architecturally significant decisions are recorded as architecture decision records (ADR) . The Ghaf platform decision log: Decision Record Status Minimal Host Proposed. netvm—Networking Virtual Machine Proposed, partially implemented for development and testing. Platform Bus for RustVMM Proposed, WIP. To create an architectural decision proposal, open a pull request and use the decision record template . Contributions to the Ghaf architecture decisions are welcome.","breadcrumbs":"Architecture » Architecture Decision Records » Architecture Decision Records","id":"16","title":"Architecture Decision Records"},"160":{"body":"The following image captures the high-level process we propose to identify and remediate the security vulnerabilities that impact Ghaf: Security Fix Automation The process consists of two parts - automated and manual : Automated vulnerability analysis is a scripted job triggered on a daily basis in Ghaf CI/CD. It consists of the following actions: (1) Locally (temporarily) update the Ghaf flake lock file. Temporary lock file update is needed so the Ghaf dependencies are up-to-date with the nixpkgs input Ghaf is pinned to. Otherwise, the automated analysis results would also include vulnerabilities that have been fixed in nixpkgs upstream since the last Ghaf flake lock update. (2) Run automated vulnerability analysis tooling for each relevant Ghaf build target. For Ghaf, being Nix-based, we propose to use nix_secupdates for automated vulnerability analysis. As a result of this step, the tooling generates an auto-triaged vulnerability report, which will be the main input for the manual analysis. Manual vulnerability analysis is a manual process, which is also executed on daily basis. (3) Using the auto-triaged vulnerability report from the previous step, manually analyze the automation results comparing the new results to earlier day's results from the relevant build. (4) If there are any fixed issues compared to the last analyzed report, initiate the Ghaf flake lock file update for relevant inputs to include the vulnerability fixes from the nixpkgs upstream to relevant Ghaf branches. (5) If there are any new vulnerabilities compared to the last analyzed report, manually analyze each vulnerability in detail. If the issue requires a fix, create a pull request to push the changes to relevant nixpkgs branches. The process described above is an upstream-first, with the main benefit of eliminating the need to maintain our own vulnerability fix patches on top of nixpgks in Ghaf. This process will also benefit the nixpkgs community, contributing to the overall security improvement for the packages Ghaf depends on.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Semi-Automated Upstream-First Process","id":"160","title":"Semi-Automated Upstream-First Process"},"161":{"body":"Ghaf is released 4 times per year at the end of each quarter. Additional releases may be made as per request. Release numbering scheme: ghaf-yy.mm .","breadcrumbs":"Release Notes » Ghaf Release Notes","id":"161","title":"Ghaf Release Notes"},"162":{"body":"Release ghaf-23.12 Release ghaf-23.09 Release ghaf-23.06 Release ghaf-23.05","breadcrumbs":"Release Notes » In This Chapter","id":"162","title":"In This Chapter"},"163":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release ghaf-23.12","id":"163","title":"Release ghaf-23.12"},"164":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.12","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release Branch","id":"164","title":"Release Branch"},"165":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.12 » Supported Hardware","id":"165","title":"Supported Hardware"},"166":{"body":"NixOS update to 23.11: NixOS 23.11 released! Further modularization of the Ghaf framework: Ghaf as Library: Templates . CLI-based installer. Lenovo X1 Carbon Gen 11: Configurable PCI and USB devices passthrough. Network Manager: support from GUIVM to NETVM. Windows VM support. Added Ghaf icons and the background image. Secure Boot is disabled by default. The hardened host kernel baseline is disabled by default. Initial hardened hypervisor integration is disabled by default. NVIDIA Jetson Orin: Configurable PCI passthrough. Jetpack baseline software updates and fixes. Initial OP-TEE and TEE Proxy support. Cross-compilation of the ARM targets (NVIDIA) on the x86 server. SLSA v1.0 level 2 compatible build. Development, testing, and performance tooling improvements.","breadcrumbs":"Release Notes » Release ghaf-23.12 » What is New in ghaf-23.12","id":"166","title":"What is New in ghaf-23.12"},"167":{"body":"Fixed bugs that were in the ghaf-23.09 release: Chromium AppVM does not boot up on X1. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes). Copy and paste text from or to Chromium AppVM does not work. Copy text from the address bar does not work as well. Personal security keys cannot be created. Cannot move the Element window by dragging with the mouse.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Bug Fixes","id":"167","title":"Bug Fixes"},"168":{"body":"Issue Status Comments The GALA application does not work In Progress Will be fixed in the next release. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Copying text from the browser address bar to another application does not work In Progress Under investigation Windows launcher application does not work on NUC and AGX In Progress Workaround: launch Windows VM from the command line. Time synchronization between host and VMs does not work in all scenarios In Progress Under investigation The taskbar disappears after the external display is disconnected from Lenovo X1 In Progress Under investigation Closing and re-opening a deck lid of a X1 laptop with running Ghaf causes instability In Progress Workaround: Keep a deck lid of a laptop open while working with Ghaf. Applications do not open from icons when NETVM is restarted In Progress Workaround: Restart AppVMs.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Known Issues and Limitations","id":"168","title":"Known Issues and Limitations"},"169":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Environment Requirements","id":"169","title":"Environment Requirements"},"17":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal Host","id":"17","title":"Minimal Host"},"170":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.12/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.12_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.12_Lenovo_X1_Carbon_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.12_Nvidia_Orin_AGX_cross-compiled-no-demoapps.tar.xz [1] , ghaf-23.12_Nvidia_Orin_AGX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_AGX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_Nvidia_Orin_NX_cross-compiled-no-demoapps [1] .tar.xz, ghaf-23.12_Nvidia_Orin_NX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_NX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit [1] no-demoapps images do not include Chromium, Zathura, and GALA applications.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Installation Instructions","id":"170","title":"Installation Instructions"},"171":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release ghaf-23.09","id":"171","title":"Release ghaf-23.09"},"172":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.09","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release Branch","id":"172","title":"Release Branch"},"173":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.09 » Supported Hardware","id":"173","title":"Supported Hardware"},"174":{"body":"New supported target hardware: NVIDIA Jetson Orin NX Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11 Modularization of the Ghaf framework: Ghaf as Library: Templates . NVIDIA Jetson Orin NX Ethernet passthrough. Lenovo X1 Carbon Gen 11: Graphics passthrough to GUIVM. Launching Application VMs through GUIVM (Chromium, Gala, and Zathura). Paravirtualized audio. Webcam passthrough. Touchpad passthrough. Cross-compilation of the ARM targets (NVIDIA) on the x86 server (with demo applications excluded).","breadcrumbs":"Release Notes » Release ghaf-23.09 » What is New in ghaf-23.09","id":"174","title":"What is New in ghaf-23.09"},"175":{"body":"Fixed bugs that were in the ghaf-23.06 release: NVIDIA Jetson AGX Orin: Cannot open Windows launcher via shortcut or command line. No Windows launcher in x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Bug Fixes","id":"175","title":"Bug Fixes"},"176":{"body":"Issue Status Comments Chromium AppVM does not boot up on X1 In Progress Intermittent timing issue, under investigation. The GALA app does not work In Progress Will be fixed in the next release. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes) In Progress Advice: be patient or, if in hurry, press power key for 15 sec. Copy and paste text from or to Chromium AppVM does not work In Progress Element cannot be opened on NVIDIA AGX Orin HW on the host Will not Fix Applications on the host will not be supported in the longer term. Cannot move the GALA/Element window by dragging with the mouse In Progress Workaround: press Windows key when moving the mouse. Personal security keys cannot be created In Progress Workaround: use another device to create security keys. No audio in a USB headset when running the application on the host Will not Fix Audio on a host is not supported. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Windows launcher application does not work In Progress Workaround: launch Windows VM from the command line.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Known Issues and Limitations","id":"176","title":"Known Issues and Limitations"},"177":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Environment Requirements","id":"177","title":"Environment Requirements"},"178":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.09/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.09_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.09_Lenovo_X1_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.09_Nvidia_Orin_AGX.tar.xz, ghaf-23.09_Nvidia_Orin_NX.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.09_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Release Notes » Release ghaf-23.09 » Installation Instructions","id":"178","title":"Installation Instructions"},"179":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release ghaf-23.06","id":"179","title":"Release ghaf-23.06"},"18":{"body":"Proposed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Status","id":"18","title":"Status"},"180":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.06","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release Branch","id":"180","title":"Release Branch"},"181":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.06 » Supported Hardware","id":"181","title":"Supported Hardware"},"182":{"body":"Ghaf Modularization (partially done): general description and context on how to use: Ghaf as Library: Templates the development status: https://github.com/tiiuae/ghaf/tree/ghaf-23.06/modules . SLSA v1.0 level provenance file included. Ghaf version information (query). NixOS is updated to 23.05: NixOS 23.05 released!","breadcrumbs":"Release Notes » Release ghaf-23.06 » What is New in ghaf-23.06","id":"182","title":"What is New in ghaf-23.06"},"183":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Bug Fixes","id":"183","title":"Bug Fixes"},"184":{"body":"Known since ghaf-23.05: Personal security keys cannot be created. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account Workaround for x86: create a separate user account for Element. Element cannot be opened on NVIDIA Jetson AGX Orin. Cannot move the GALA/Element window by dragging with the mouse. No windows-launcher in the x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Known Issues and Limitations","id":"184","title":"Known Issues and Limitations"},"185":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release ghaf-23.05","id":"185","title":"Release ghaf-23.05"},"186":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.05","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release Branch","id":"186","title":"Release Branch"},"187":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.05 » Supported Hardware","id":"187","title":"Supported Hardware"},"188":{"body":"This is the first release of Ghaf including support for: the Wayland display server protocol (on the host) the graphical interface with Weston Window Manager (on the host) the Chromium browser (on the host) Element, a Matrix-based chat client (on the host) the Google Android look-alike (GALA) application Ghaf Framework is under active development, some of the features may not be stable.","breadcrumbs":"Release Notes » Release ghaf-23.05 » What is New in ghaf-23.05","id":"188","title":"What is New in ghaf-23.05"},"189":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin. Prevents logging into GALA and Element applications. Personal security keys cannot be created: Prevents running Android in the Cloud. Workaround: use another device to create security keys. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account. Workaround: create a separate user account for Element.","breadcrumbs":"Release Notes » Release ghaf-23.05 » Known Issues and Limitations","id":"189","title":"Known Issues and Limitations"},"19":{"body":"Ghaf uses the default NixOS configuration as a baseline to build the target image. The default NixOS configuration is targeted for more general use with the inclusion of multiple packages that are not supporting the Ghaf design target of a minimal TCB to protect the host. Depending on the flexibility of the NixOS configuration, Ghaf minimal host may require new development to support the requirements. This structure in the Ghaf host configuration imports the NixOS minimal profile which suits the minimal TCB better. Even better, the modular declarative profile enables the further optimization of the minimal TCB while supporting other profiles that suit the evaluation of other objectives such as feasibility studies of additional functionality, security and performance.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Context","id":"19","title":"Context"},"190":{"body":"The Ghaf Platform can be used in various different environments, configurations, and hardware to serve several purposes. Ghaf is not a fully-fledged product but a module that can serve as a centerpiece to enable secure edge systems.","breadcrumbs":"Showcases » Showcases","id":"190","title":"Showcases"},"191":{"body":"Secure Laptop demonstrates how our open-source Ghaf Platform can increase the security offering for laptops through hardware-backed isolation by means of virtualization. We use Lenovo ThinkPad X1 Carbon Gen 11 as a target device. In this showcase, the following applications are running in isolated VMs: Windows VM Browser VM that can be used as an application launcher. For example, MS Office suite running in the Browser environment. All data is stored in the enterprise cloud. PDF Viewer VM. No data can be extracted or shared locally. Cloud Android VM for secure communication. Each VM operates independently and securely within its own isolated environment, without interference from other VMs running on the same physical hardware. Additionally beneath the surface Ghaf contains two hidden system VMS: Networking VM GUI VM Ghaf Secure Laptop","breadcrumbs":"Showcases » Secure Laptop","id":"191","title":"Secure Laptop"},"192":{"body":"Running Windows VM on Ghaf Running Cuttlefish on Ghaf","breadcrumbs":"Showcases » In This Chapter","id":"192","title":"In This Chapter"},"193":{"body":"You can run Windows 11 in a VM on Ghaf with NVIDIA Jetson Orin AGX (ARM64) or Generic x86 device. This method uses QEMU as VMM. For information on how to build and run a Ghaf image, see Build and Run . Windows 11 in VM","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM on Ghaf","id":"193","title":"Running Windows 11 in VM on Ghaf"},"194":{"body":"Depending on the device: For Generic x86, download Windows 11 ISO ( Win11_22H2_English_x64v2.iso ) from the Microsoft website. For NVIDIA Jetson Orin AGX (ARM64), use your Microsoft account to join the Windows Insider Program . On the Windows 11 on Arm Insider Preview page, select the Windows 11 Client Arm64 Insider Preview (Canary) - Build 25324 build and the language to download a VHDX image file. Copy the image to an external USB drive. Connect the USB drive to the device with the latest version of Ghaf installed, and mount it to some folder. sudo mkdir /mnt\nsudo mount /dev/sda /mnt WARNING: [For NVIDIA Jetson Orin AGX] Make sure to use a fresh VHDX image file that was not booted in another environment before.","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Getting Windows 11 Image","id":"194","title":"Getting Windows 11 Image"},"195":{"body":"Running Windows 11 in VM on ARM64 Device (NVIDIA Jetson Orin AGX) In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. TIP: If after pressing Shift+F10 the command window is not displayed, try to switch between opened windows by using Alt+Tab. Running Windows 11 in VM on Generic x86 Device On x86_64 device Windows 11 VM can be launched with either an ISO image or QCOW2: For an ISO image, the script creates an empty QCOW2 image in the same directory which is used as a system disk in the VM. After installing Windows 11, run the script for the QCOW2 image. Do the following: In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Win11_22H2_English_x64v2.iso When the VM starts booting press any key to boot from a CD. In order to bypass Windows 11 system requirements, open cmd with Shift+F10 and type regedit. In HKEY_LOCAL_MACHINE\\SYSTEM\\Setup, right-click New > Key and type LabConfig. For this key create two DWORD (32-bit) parameters: Name: BypassTPMCheck, value 1. Name: BypassSecureBootCheck, value 1. TIP: [For Ghaf running on a laptop] If after pressing Shift+F10 the command window is not displayed, try again with the Fn key (Shift+Fn+F10) or switch between opened windows by using Alt+Tab. Install Windows 11 in the VM. Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. After the installation is completed the script is launched with the QCOW2 image: windows-launcher ./win11.qcow2","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM","id":"195","title":"Running Windows 11 in VM"},"196":{"body":"Instead of running Windows launcher from the command line it is possible to launch the Windows 11 VM by clicking the corresponding icon in the Weston taskbar. When you click it for the first time, you will see a file selection dialog. Once Windows 11 image has been selected, it saves the path to the ~/.config/windows-launcher-ui.conf configuration file and launches the VM. Next time, the VM will be immediately launched with one click. In order to use a different image instead of the saved one, delete the configuration file: rm ~/.config/windows-launcher-ui.conf","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Using UI to Launch Windows 11 VM","id":"196","title":"Using UI to Launch Windows 11 VM"},"197":{"body":"It is possible to pass additional parameters to QEMU when running Windows launcher from the command line. NVIDIA Jetson Orin AGX (ARM64) example: windows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX -serial stdio Generic x86 example: windows-launcher ./win11.qcow2 -serial stdio","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Passing Additional Parameters to QEMU","id":"197","title":"Passing Additional Parameters to QEMU"},"198":{"body":"Cuttlefish is a configurable virtual Android device (virtual-machine based Android emulator) that can run both remotely (using third-party cloud offerings such as Google Cloud Engine) and locally (on Linux x86 machines). For more information about Cuttlefish, see the official Cuttlefish Virtual Android Devices documentation. You can run Android as a VM on Ghaf for testing and development purposes using NVIDIA Jetson Orin AGX (ARM64) or Generic x86.","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Android Cuttlefish Virtual Device on Ghaf","id":"198","title":"Running Android Cuttlefish Virtual Device on Ghaf"},"199":{"body":"Download host_package (includes binaries and scripts that must be run on the host machine to set up and run the Cuttlefish virtual device) and aosp_cf_phone-img (a system image) files from the Android CI server and copy them to Ghaf: For NVIDIA Jetson Orin AGX (ARM64): cvd-host_package.tar.gz and aosp_cf_arm64_phone-img-9970479.zip For Generic x86: cvd-host_package.tar.gz and aosp_cf_x86_64_phone-img-9970479.zip Download a host package from the same build as the image. Make sure Internet connection is working in Ghaf. If the system gets an IP address but the DNS server is not responding, set the correct date and time. [For x86_64 only] Install the required packages: NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix-env -i python3 openssl bash unzip Create some hackish links that are required for running Cuttlefish: sudo ln -s $(which mv) /bin/mv\nsudo ln -s $(which bash) /bin/bash\nsudo mkdir -p /usr/lib/cuttlefish-common/bin/\nsudo touch /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo chmod 755 /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo groupadd -f cvdnetwork\nsudo usermod -aG cvdnetwork $USER\nsudo usermod -aG kvm $USER\nsudo su ghaf Change directory to the one that contains host package and image files and extract them: For NVIDIA Jetson Orin AGX (ARM64): tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_arm64_phone-img-9970479.zip For Generic x86: tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_x86_64_phone-img-9970479.zip [For x86_64 only] Extra steps to fix missing dependencies: Find ld-linux-x86-64.so.2 and create a link in /lib64: sudo find /nix/store -name ld-linux-x86-64.so.2\nsudo mkdir /lib64\nsudo ln -s /nix/store/dg8mpqqykmw9c7l0bgzzb5znkymlbfjw-glibc-2.37-8/lib/ld-linux-x86-64.so.2 /lib64 Find libdrm.so.2 in the /nix/store and copy it to the lib64 directory where the host package was extracted: sudo find /nix/store -name libdrm.so.2\ncp /nix/store/2jdx0r0yiz1k38ra0diwqm5akb0k1rjh-libdrm-2.4.115/lib/ ./lib64","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Installing Cuttlefish","id":"199","title":"Installing Cuttlefish"},"2":{"body":"The Ghaf Platform development is focused on the transition to a modular architecture for edge devices. Products such as secure phones, drones, laptops, and other communication devices have unique challenges in their respective hardware and software ecosystems. Enabling the integration of individual technology stacks into an organizational framework can be a challenging task. The Ghaf Platform is designed to ease this process and enable research to overcome a number of challenges.","breadcrumbs":"About Ghaf » Ghaf Platform Applications","id":"2","title":"Ghaf Platform Applications"},"20":{"body":"Following table describes the development requirements of minimal host. All requirements originate from TII SSRC unless otherwise noted. Scope further defines: target configuration: R for release, D for debug architectural variant : V for virtualization supporting variant, A for all, including No Virtualization Compliance states the progress of requirement compliance as follows: D for Designed, design requirement from TII SSRC for analysis and evaluation. I for Implemented, design requirement met with possible, limitations documented under Consequences . P for Proposed, raised for discussion but not yet designed. M for Met, the requirement is reviewed and approved at technology readiness level 4 . ID Requirement Description Scope Compliance MH01 Defined in nix Host declaration in nix R&D,A I MH02 Reduced profile Remove unnecessary R, V I MH03 No networking Host has no networking R, V D MH04 No graphics Host has no GUI stack R, V D MH05 No getty Host has no terminal R, V P MH06 No nix tooling Only /nix/store, no nix R, V P MH07 Minimal defconfig Host kernel is minimized R, V D MH08 Update via adminvm A/B update outside host R, V P MH09 Read-only filesystem Mounted RO, integrity checked R, V P This list of requirements is not yet comprehensive and may be changed based on findings of further analysis as stated in the following section.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Requirements","id":"20","title":"Requirements"},"200":{"body":"Go to the directory with exctacted host package and image files and run Cuttlefish: HOME=$PWD ./bin/launch_cvd -report_anonymous_usage_stats=n It will take some time to load. There should be the following messages in the console when the VM is booted and ready to use: VIRTUAL_DEVICE_DISPLAY_POWER_MODE_CHANGED\nVIRTUAL_DEVICE_BOOT_STARTED\nVIRTUAL_DEVICE_BOOT_COMPLETED\nVirtual device booted successfully","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Cuttlefish","id":"200","title":"Running Cuttlefish"},"201":{"body":"Run the Chromium browser by clicking on the corresponding icon in Weston and navigate to https://localhost:8443 . Ignore a warning about the SSL certificate (“Your connection is not private“) and click Advanced > Proceed to 127.0.0.1 (unsafe) . Click the cvd-1 Connect button. A new tab with an Android VM window will be opened. [Optionally] You can close the browser and use the following command to open a standalone window with an Android VM: chromium-browser --enable-features=UseOzonePlatform --ozone-platform=wayland --new-window --app=https://127.0.0.1:8443/client.html?deviceId=cvd-1","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Connecting to Cuttlefish Device","id":"201","title":"Connecting to Cuttlefish Device"},"202":{"body":"This is a glossary of terms and abbreviations developed by the Ghaf team. Abbreviation is a shortened form of a word or phrase. Usually is used to save space and time, to avoid repetition of long words and phrases. The styling of abbreviations is inconsistent and includes several possible variations. Some abbreviations are formed by omitting all but the first few letters of a word. Such abbreviations usually end in a period: Mr. for mister, Oct. for October. When abbreviations are formed from the initial letters of a phrase, they are categorized as either initialisms or acronyms : With initialisms , each letter is pronounced separately. For example: FBI for Federal Bureau of Investigation, CIA for Central Intelligence Agency, CD for Compact Disk, and also OK for Okay, ‘orl korrekt‘ that is a misspelling of \"all correct\". Initialisms cannot be pronounced as words. Acronyms are another type of abbreviation formed from the initial letters but that are pronounced as if they were words themselves. For example: ROFL for ‘rolling on the floor laughing’, FEMA for Federal Emergency Management Agency, NATO for North Atlantic Treaty Organization. All acronyms are abbreviations, but not all abbreviations are acronyms. ASAP that comes from ‘as soon as possible’ and appt (for appointment) are both considered abbreviations, but only ASAP is an acronym.","breadcrumbs":"Glossary » Glossary","id":"202","title":"Glossary"},"203":{"body":"Articles (a, an, the) are common with initialisms. The indefinite article should be chosen according to the first sound—not the first letter: ‘A’ is correct before initialisms beginning with a consonant sound, including a vowel pronounced as a ‘w’ or ‘y’ sound. For example: ‘a NASA launch’, but ‘NASA launches take place’. When an initialism begins with a vowel sound (including silent consonants or a consonant pronounced with an initial vowel sound), ‘an’ should be used instead. For example, ‘read about an FBI raid’. Acronyms not require articles except when they are used adjectivally. For example: ‘the patient was diagnosed with AIDS’, but ‘the AIDS patient’; ‘the NASA launch takes place’. So, read the abbreviation aloud: it may be either an initialism or an acronym. Focus on the sounds, not on the letters: ‘ an unidentified flying object’ but ‘ a UFO’ as it pronounced “a YOO-ef-OH” (/ˌjuːɛfˈəʊ/). More examples: a EULA (“YOO-luh”), a LAN router, an XML file, an HTML page.","breadcrumbs":"Glossary » Appropriate Use of Articles before Abbreviations","id":"203","title":"Appropriate Use of Articles before Abbreviations"},"204":{"body":"If you do not find the term or abbreviation you are looking for, share your questions using GitHub Issues . Wikipedia is not a dictionary. Groups of terms and abbreviations: Project Related Core Concepts SCS Related","breadcrumbs":"Glossary » Trivia","id":"204","title":"Trivia"},"205":{"body":"","breadcrumbs":"Glossary » Project Related","id":"205","title":"Project Related"},"206":{"body":"The project code name that represents the Ghaf tree. Source: https://connectwithnature.ae/knowledge-hub/ghaf-tree","breadcrumbs":"Glossary » Ghaf","id":"206","title":"Ghaf"},"207":{"body":"Continuous Integration and Continuous Delivery is a Ghaf software development lifecycle. Continuous Integration refers to regularly integrating code changes into a shared repository, where they are automatically tested and verified. Continuous Delivery—software is released in short iterations. Currently, Continuous Deployment is not set up. Continuous Deployment—code is deployed to customers automatically.","breadcrumbs":"Glossary » CI/CD","id":"207","title":"CI/CD"},"208":{"body":"Secure Systems Research Center is a global center of excellence in the development of end-to-end security and resilience for cyber-physical and autonomous systems. SSRC is a part of TII. Source: https://www.tii.ae/secure-systems","breadcrumbs":"Glossary » SSRC","id":"208","title":"SSRC"},"209":{"body":"Technology Innovation Institute is a UAE-based research center that aims to lead global advances in artificial intelligence, autonomous robotics, quantum computing, cryptography and quantum communications, directed energy, secure communication, smart devices, advanced materials, and propulsion and space technologies. Source: https://www.tii.ae/","breadcrumbs":"Glossary » TII","id":"209","title":"TII"},"21":{"body":"This ADR adopts a custom developed minimal profile using nixpkgs. It reduces both image and root partition size by eliminating the host OS content per requirements and implements a minimal TCB. The current implementation of NixOS overridden. For more information on a minimal host profile, see minimal.nix . With the progress of implementing the requirements, the minimal host customization will be illustrated.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Decision","id":"21","title":"Decision"},"210":{"body":"","breadcrumbs":"Glossary » Core Concepts","id":"210","title":"Core Concepts"},"211":{"body":"An Architecture Decision (AD) is a justified software design choice that addresses a functional or non-functional requirement that is architecturally significant. An Architectural Decision Record (ADR) captures a single AD and its rationale; the collection of ADRs created and maintained in a project constitute its decision log. Source: https://adr.github.io/","breadcrumbs":"Glossary » ADR","id":"211","title":"ADR"},"212":{"body":"Boot and Power Management Processor. The NVIDIA processor provides a set of hardware functions that support booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. Source: NVIDIA Orin Series System-on-Chip, Technical Reference Manual, Version: 1.2, Date: 29-September-2023","breadcrumbs":"Glossary » BPMP","id":"212","title":"BPMP"},"213":{"body":"A board support package is a collection of software used to boot and run the embedded system.","breadcrumbs":"Glossary » BSP","id":"213","title":"BSP"},"214":{"body":"The Dynamic Host Configuration Protocol is a network protocol that automatically sets IP addresses and other attributes to enable information transfer between network nodes. Source: Computer Networks: A Systems Approach, https://book.systemsapproach.org/internetworking/basic-ip.html#host-configuration-dhcp","breadcrumbs":"Glossary » DHCP","id":"214","title":"DHCP"},"215":{"body":"A direct memory access is a process in which data may be moved directly to or from the main memory of a computer system by operations not under the control of the central processing unit. Source: https://www.collinsdictionary.com/dictionary/english/direct-memory-access","breadcrumbs":"Glossary » DMA","id":"215","title":"DMA"},"216":{"body":"embedded MultiMediaCard","breadcrumbs":"Glossary » eMMC, e-MMC","id":"216","title":"eMMC, e-MMC"},"217":{"body":"end-user license agreement","breadcrumbs":"Glossary » EULA","id":"217","title":"EULA"},"218":{"body":"firmware","breadcrumbs":"Glossary » FW","id":"218","title":"FW"},"219":{"body":"The Google Android Look Alike application. Mobile client application for connecting to a Cloud Android device in Secured Google Cloud Platform VMs. Users see a remotely rendered Android phone desktop on their own device screen and interact with the Cloud Android device like the real mobile device. All application processing runs in the cloud.","breadcrumbs":"Glossary » GALA","id":"219","title":"GALA"},"22":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Consequences","id":"22","title":"Consequences"},"220":{"body":"graphical user interface","breadcrumbs":"Glossary » GUI","id":"220","title":"GUI"},"221":{"body":"An intrusion detection system (also intrusion prevention system or IPS) monitors network traffic for suspicious activity and report when such activity is discovered.","breadcrumbs":"Glossary » IDS","id":"221","title":"IDS"},"222":{"body":"input–output memory management unit","breadcrumbs":"Glossary » IOMMU","id":"222","title":"IOMMU"},"223":{"body":"The Internet Protocol is a set of rules for communication over the Internet, such as sending email, streaming video, or connecting to a website.","breadcrumbs":"Glossary » IP","id":"223","title":"IP"},"224":{"body":"An Instruction Set Architecture is part of the abstract model of a computer that defines how the CPU is controlled by the software. Source: https://www.arm.com/glossary/isa","breadcrumbs":"Glossary » ISA","id":"224","title":"ISA"},"225":{"body":"Kernel-based Virtual Machine, an open-source virtualization technology built into Linux.","breadcrumbs":"Glossary » KVM","id":"225","title":"KVM"},"226":{"body":"Kernel-based Virtual Machine Secured, an open-source project. Source: https://github.com/jkrh/kvms","breadcrumbs":"Glossary » KVMS","id":"226","title":"KVMS"},"227":{"body":"memory management unit","breadcrumbs":"Glossary » MMU","id":"227","title":"MMU"},"228":{"body":"Message Signaled Interrupts","breadcrumbs":"Glossary » MSI","id":"228","title":"MSI"},"229":{"body":"A Linux distribution based on the Nix package manager and build system. Source: https://nixos.wiki/wiki/Overview_of_the_NixOS_Linux_distribution","breadcrumbs":"Glossary » NixOS","id":"229","title":"NixOS"},"23":{"body":"Ghaf minimal host module is implemented in nix modules . Currently, host and VM declarations are implemented using microvm.nix but this is not strict requirement for ghaf release mode declarations if the limitations or dependencies of microvm.nix do not comply with other requirements. This may require separate release mode custom nix declarations to support flexibility with microvm.nix in debug mode.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Defined in nix (MH01)","id":"23","title":"Defined in nix (MH01)"},"230":{"body":"original equipment manufacturer","breadcrumbs":"Glossary » OEM","id":"230","title":"OEM"},"231":{"body":"operating system","breadcrumbs":"Glossary » OS","id":"231","title":"OS"},"232":{"body":"Peripheral Component Interconnect","breadcrumbs":"Glossary » PCI","id":"232","title":"PCI"},"233":{"body":"Peripheral Component Interconnect Express","breadcrumbs":"Glossary » PCIe","id":"233","title":"PCIe"},"234":{"body":"A generic and open source machine emulator and virtualizer. Source: QEMU’s documentation","breadcrumbs":"Glossary » QEMU","id":"234","title":"QEMU"},"235":{"body":"The Server Base System Architecture specifies a hardware system architecture, based on Arm 64-bit architecture, that server system software, for example operating systems, hypervisors, and firmware can rely on. Source: Arm® Server Base System Architecture 7.1 Platform Design Document","breadcrumbs":"Glossary » SBSA","id":"235","title":"SBSA"},"236":{"body":"A stock keeping unit, is a unique code used by sellers to identify and track products.","breadcrumbs":"Glossary » SKU","id":"236","title":"SKU"},"237":{"body":"A system on chip, a microchip that contains the necessary electronic circuits for a fully functional system on a single integrated circuit (IC).","breadcrumbs":"Glossary » SoC","id":"237","title":"SoC"},"238":{"body":"solid-state drive","breadcrumbs":"Glossary » SSD","id":"238","title":"SSD"},"239":{"body":"Trusted computing base defines the security requirements by providing separation of users and data or resources. Source: Department of Defense trusted computer system evaluation criteria, DoD 5200.28-STD, 1985","breadcrumbs":"Glossary » TCB","id":"239","title":"TCB"},"24":{"body":"Initial Ghaf minimal profile host size reduction is implemented with metrics on host total size and break down of size of the largest dependencies. Based on the metrics, further analysis is needed on several key modules including, but not limited to, kernel, systemd and nixos.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Reduced profile (MH02)","id":"24","title":"Reduced profile (MH02)"},"240":{"body":"Transport Layer Security, a security protocol.","breadcrumbs":"Glossary » TLS","id":"240","title":"TLS"},"241":{"body":"An universal asynchronous receiver-transmitter, a hardware communication protocol.","breadcrumbs":"Glossary » UART","id":"241","title":"UART"},"242":{"body":"Unified Extensible Firmware Interface is a specifications that defines a new model for the interface between personal-computer operating systems and platform firmware. Source: Unified Extensible Firmware Interface Forum","breadcrumbs":"Glossary » UEFI","id":"242","title":"UEFI"},"243":{"body":"user interface","breadcrumbs":"Glossary » UI","id":"243","title":"UI"},"244":{"body":"Virtual Function I/O Source: https://docs.kernel.org/driver-api/vfio.html","breadcrumbs":"Glossary » VFIO","id":"244","title":"VFIO"},"245":{"body":"virtual machine","breadcrumbs":"Glossary » VM","id":"245","title":"VM"},"246":{"body":"Virtual Machine Manager","breadcrumbs":"Glossary » VMM","id":"246","title":"VMM"},"247":{"body":"zero trust architecture, zero trust security model","breadcrumbs":"Glossary » ZTA","id":"247","title":"ZTA"},"248":{"body":"","breadcrumbs":"Glossary » SCS Related","id":"248","title":"SCS Related"},"249":{"body":"certificate authority","breadcrumbs":"Glossary » CA","id":"249","title":"CA"},"25":{"body":"Currently ghaf host profile for both release and debug target has networking. Requirement of no networking on release target requires declarative host configuration where: The release target host kernel is built without networking support. Networking must be enabled for debug target. The release target host user space has no networking tools nor configurations. Access to tools on host must be enabled for debug target. To support development of configuration changes between release and debug target, the debug target must support networking. This also supports No Virtualization-variant development in which networking must be enabled. The exception to no networking requirement is the virtual machine manager control socket from host to guest(s). The amount of required kernel configuration dependencies and impact to different VMMs must be further analyzed. No networking has impact on how vmd adminvm to host communication is implemented. With no networking, shared memory is proposed. No networking may have impact on how the guest-to-guest inter virtual machine communication configuration must implemented with VMMs. This must be further analyzed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No networking (MH03)","id":"25","title":"No networking (MH03)"},"250":{"body":"Certificate Management System","breadcrumbs":"Glossary » CMS","id":"250","title":"CMS"},"251":{"body":"Edwards-curve Digital Signature Algorithm","breadcrumbs":"Glossary » EdDSA","id":"251","title":"EdDSA"},"252":{"body":"The GNU Privacy Guard (also GnuPG) is a complete and free implementation of the OpenPGP standard as defined by RFC4880. Source: https://gnupg.org/","breadcrumbs":"Glossary » GPG","id":"252","title":"GPG"},"253":{"body":"A hardware security module is a crypto processor designed for the crypto key lifecycle protection.","breadcrumbs":"Glossary » HSM","id":"253","title":"HSM"},"254":{"body":"Cryptography and SSL/TLS Toolkit. Source: https://www.openssl.org/","breadcrumbs":"Glossary » OpenSSL","id":"254","title":"OpenSSL"},"255":{"body":"A public key infrastructure is the framework of encryption and cybersecurity.","breadcrumbs":"Glossary » PKI","id":"255","title":"PKI"},"256":{"body":"A Python binding to libsodium, which is a fork of the Networking and Cryptography library. Source: https://pypi.org/project/PyNaCl/","breadcrumbs":"Glossary » PyNaCl","id":"256","title":"PyNaCl"},"257":{"body":"registration authority","breadcrumbs":"Glossary » RA","id":"257","title":"RA"},"258":{"body":"A software bill of materials is a machine-readable document of all software components, open source licenses, and dependencies in a target software.","breadcrumbs":"Glossary » SBOM","id":"258","title":"SBOM"},"259":{"body":"A supply chain security is a process of securing the machinery of the development, building, and release environment.","breadcrumbs":"Glossary » SCS","id":"259","title":"SCS"},"26":{"body":"Ghaf minimal host profile for release target has no graphics. Graphics will be compartmentalized to GUIVM. All graphics and display output related components and dependencies, including kernel drivers, must be removed from kernel configuration. Those are to be passed through to GUIVM.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No graphics (MH04)","id":"26","title":"No graphics (MH04)"},"260":{"body":"A security chip that performs encryption and decryption operations.","breadcrumbs":"Glossary » secure cryptoprocessor","id":"260","title":"secure cryptoprocessor"},"261":{"body":"An immutable blob of data; primarily refers to software, but SLSA can be used for any artifact. Source: https://slsa.dev/spec/v0.1/terminology","breadcrumbs":"Glossary » software artifact","id":"261","title":"software artifact"},"262":{"body":"Supply chain Levels for Software Artifacts is a security framework, a check-list of standards and controls to prevent tampering, improve integrity, and secure packages and infrastructure in your projects, businesses or enterprises. Source: https://slsa.dev/","breadcrumbs":"Glossary » SLSA","id":"262","title":"SLSA"},"263":{"body":"Our experience in research, studies and lessons learned activities: i.MX 8QM platform bus ethernet passthrough System installation","breadcrumbs":"Research Notes » Research Notes","id":"263","title":"Research Notes"},"264":{"body":"The i.MX 8QuadMax (i.MX 8QM, iMX8QM, imx8qm) passthrough host setup relies as much as possible on the default i.MX 8QM MEK (imx8qm-mek) device tree configuration. Some guidance on what is required for passthrough to work on i.MX 8 can be found in the XEN device trees. This document provides a detailed description of what has been done and why. For the more impatient readers, the example device tree files for i.MX 8QM guest and host with Ethernet passthrough are available here: Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts NOTE 20.12.2022: At the current state, the passthrough is not completely functional. The Ethernet device (fec1) or even both devices (fec1 and fec2) can be set up in the guest. The devices respond and seem functional, the device node does activate, the drivers load correctly, the power state of the device changes to active, and the link state of the Ethernet connection seems to change correctly. However, for some reason, no actual Ethernet data packages go through the Ethernet adapter. The most visible issue is that no interrupts come to the Ethernet devices. See the following topics: i.MX 8QM Ethernet Passthrough Host Kernel Configuration Host Device Tree Explained Other Notes About Passthrough Changes in U-Boot Running Platform Device Passthrough in QEMU Guest Setup Adding Devices to Guest Some Final Touches for Guest Devices Compiling the Device Tree Source to Binary Form Compiling for Guest Compiling for Host Running QEMU with Passthrough Platform Devices","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » i.MX 8QM Ethernet Passthrough","id":"264","title":"i.MX 8QM Ethernet Passthrough"},"265":{"body":"Kernel version 5.10 was used during the setup. For the passthrough to work, a few kernel configuration options need to be added to the default i.MX 8QM configuration: CONFIG_VFIO_PLATFORM=y CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y CONFIG_VFIO_PLATFORM=y CONFIG_ARM_SMMU_V3_SVA=y","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Kernel Configuration","id":"265","title":"Host Kernel Configuration"},"266":{"body":"The default Freescale i.MX 8QM MEK configuration is included and then updated to get the Ethernet device passthrough configuration added on top of the original device configuration. There are two problems with using the i.MX 8 XEN configuration as a reference. The first issue is that the configuration between XEN and KVM do not map one to one. The second issue is more specific to Ethernet passthrough, as i.MX 8 XEN configuration does not set up passthrough for Ethernet so most of the configuration needs to be figured out from scratch. #include \"freescale/imx8qm-mek.dts\"\n/ { domu { /* * There are 5 MUs, 0A is used by Dom0, 1A is used * by ATF, so for DomU, 2A/3A/4A could be used. * SC_R_MU_0A * SC_R_MU_1A * SC_R_MU_2A * SC_R_MU_3A * SC_R_MU_4A * The rsrcs and pads will be configured by uboot scu_rm cmd */ #address-cells = <1>; #size-cells = <0>; doma { compatible = \"xen,domu\"; /* * The name entry in VM configuration file * needs to be same as here. */ domain_name = \"DomU\"; /* * The reg property will be updated by U-Boot to * reflect the partition id. */ reg = <0>; /* * Initialize and activate the Mailbox MU2A at boot */ init_on_rsrcs = < IMX_SC_R_MU_2A >; /* * Mark the Mailbox and Ethernet adapter power domains available to guest */ rsrcs = < IMX_SC_R_MU_2A IMX_SC_R_ENET_0 >; /* * Mark the pads for ethernet adapter fec1 available to guest */ pads = < IMX8QM_ENET0_MDIO IMX8QM_ENET0_MDC IMX8QM_ENET0_REFCLK_125M_25M IMX8QM_ENET0_RGMII_TXC IMX8QM_ENET0_RGMII_TX_CTL IMX8QM_ENET0_RGMII_TXD0 IMX8QM_ENET0_RGMII_TXD1 IMX8QM_ENET0_RGMII_TXD2 IMX8QM_ENET0_RGMII_TXD3 IMX8QM_ENET0_RGMII_RXC IMX8QM_ENET0_RGMII_RX_CTL IMX8QM_ENET0_RGMII_RXD0 IMX8QM_ENET0_RGMII_RXD1 IMX8QM_ENET0_RGMII_RXD2 IMX8QM_ENET0_RGMII_RXD3 IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETB IMX8QM_SCU_GPIO0_07 IMX8QM_SPI0_CS1 IMX8QM_SPI2_CS1 IMX8QM_SAI1_RXFS IMX8QM_SAI1_RXC >; /* GPIOS as default from imxqm XEN device tree */ gpios = <&lsio_gpio1 13 GPIO_ACTIVE_LOW>, <&lsio_gpio1 19 GPIO_ACTIVE_LOW>, <&lsio_gpio1 27 GPIO_ACTIVE_LOW>, <&lsio_gpio1 28 GPIO_ACTIVE_LOW>, <&lsio_gpio1 30 GPIO_ACTIVE_LOW>, <&lsio_gpio4 1 GPIO_ACTIVE_LOW>, <&lsio_gpio4 3 GPIO_ACTIVE_LOW>, <&lsio_gpio4 6 GPIO_ACTIVE_LOW>, <&lsio_gpio4 9 GPIO_ACTIVE_LOW>, <&lsio_gpio4 11 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 19 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 22 GPIO_ACTIVE_LOW>, <&lsio_gpio4 25 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 26 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 27 GPIO_ACTIVE_LOW>, <&lsio_gpio4 29 GPIO_ACTIVE_LOW>; }; };\n}; /* * Add iommus property for the passed through device nodes to allow setting up vfio * The device type \"compatible\" is changed to prevent the system from loading a * driver the the adapter. * Most other properties are removed from the adapter. */\n&fec1 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ phy-handle; /delete-property/ pinctrl-names; /delete-property/ pinctrl-0;\n}; /* * The device is not being used by guest. Just to make sure it is removed from iommu * group and disabled. */\n&fec2 { /delete-property/ iommus; status = \"disabled\";\n}; /* * Timer device for fec1\n&enet0_lpcg { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ pinctrl-0;\n}; &enet1_lpcg { /delete-property/ iommus; status = \"disabled\";\n}; &lsio_mu2 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\";\n}; /*\n* Remove iommus properties from other devices which are not passed through for Network VM\n*/\n&usdhc1 { /delete-property/ iommus;\n}; &usdhc2 { /delete-property/ iommus;\n}; &usdhc3 { /delete-property/ iommus;\n}; &sata { /delete-property/ iommus;\n}; &usbotg3 { /delete-property/ iommus;\n}; &usbotg3_cdns3 { /delete-property/ iommus;\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Device Tree Explained","id":"266","title":"Host Device Tree Explained"},"267":{"body":"All devices which belong to the same VFIO/IOMMU group need to be passed through to the guest. To prevent the device from being initialized by the host, change the device-compatible property to a dummy such as \"fsl,dummy\". The device status need needs to be \"okay\" for the device node to be available. If U-Boot finds devices that appear in the doma rsrcs that contains the properties listed below, the device will get removed from the DTB: power-domains clocks clock-names assigned-clocks assigned-clock-rates pinctrl-0","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Other Notes About Passthrough","id":"267","title":"Other Notes About Passthrough"},"268":{"body":"In our host device tree, we defined a couple of \"rsrcs\" resources to be handed over to the guest system. The ownership of these registers needs to be transferred to the guest after loading our device tree and before the actual boot. This can be done in U-Boot with a command: scu_rm dtb ${fdt_addr} The easiest way to accomplish this automatically during boot is to add the \"scu_rm\" to the default i.MX 8QM U-Boot \"boot_os\" command and save the changes as below: setenv boot_os 'scu_rm dtb ${fdt_addr}; booti ${loadaddr} - ${fdt_addr};'\nsaveenv","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Changes in U-Boot","id":"268","title":"Changes in U-Boot"},"269":{"body":"Before you start QEMU, the passedthrough devices need to be bind to the VFIO driver. In some cases, the default driver needs to be unbind before the device can be bind to VFIO. However, in this case, all devices were changed to use the dummy device type in the device tree, so the step below is not required for this setup. echo 5d1d0000.mailbox > /sys/bus/platform/devices/5d1d0000.mailbox/driver/unbind\necho 5b040000.ethernet > /sys/bus/platform/devices/5b040000.ethernet/driver/unbind\necho 5b230000.clock-controller > /sys/bus/platform/devices/5b230000.clock-controller/driver/unbind The VFIO driver allows user-level access to the devices. Binding required devices to VFIO can be done as below: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After binding the devices to VFIO so it is possible to pass the devices to QEMU using \" -device vfio-platform \" arguments as below. The order in which the device arguments are given to QEMU may have an effect on some device properties such as interrupts. -device vfio-platform,host=5b230000.clock-controller\n-device vfio-platform,host=5b040000.ethernet\n-device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running Platform Device Passthrough in QEMU","id":"269","title":"Running Platform Device Passthrough in QEMU"},"27":{"body":"Ghaf host in release mode must have no terminals (TTYs) to interact with. In the current state of development, this cannot be enabled yet and has minimum requirement of system logging outside the host. Proposed design to approach this is requirement is to enable getty declaratively only in a debug serial terminal under modules/development .","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No getty (MH05)","id":"27","title":"No getty (MH05)"},"270":{"body":"Before starting the virtual machine with passed-through devices, we need to define our virtual machine device tree. One way of gaining a template for our QEMU device tree is by starting our QEMU instance and requesting a dump of its device tree in the DTB format as below. DTB is a binary format of the device tree so we also need to use the command line tool device tree compiler dtc to convert the binary device tree to a more human-friendly device tree source format. Converting the device tree to source format may give a few warnings of missing or unrecognized properties and such but that is normal. qemu-system-aarch64 \\ -M virt,gic-version=host,dumpdtb=virt.dtb -enable-kvm -nographic # Convert binary to source device tree format\ndtc -I dtb -O dts virt.dtb > virt.dts This will provide a \" virt.dts \" file which can be used as a base for adding our passedthrough devices. The U-Boot device tree may change based on the U-Boot version, so the guest device tree may need some maintenance every now and then.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Guest Setup","id":"270","title":"Guest Setup"},"271":{"body":"The platform devices which are going to get passed through should be added to the QEMU device tree platform bus section. In this case, the main devices are fec1 , enet0_lpcg and lsio_mu2 . At the time of writing, the platform bus address in QEMU is \" c000000 \" but that can be changed within the following code (needs recompiling QEMU) or it might change during some the QEMU code update. platform@c000000 { compatible = \"qemu,platform\\0simple-bus\"; interrupt-parent = <0x8001>; #address-cells = <0x02>; #size-cells = <0x02>; /* Devices register remapping // ranges = <0xc000000 0x00 0xc000000 0x2000000>; ranges = <0x00 0x5b230000 0x00 0xc000000 0x00 0x10000>, <0x00 0x5b040000 0x00 0xc010000 0x00 0x10000>, <0x00 0x5d1d0000 0x00 0xc020000 0x00 0x10000>; /* * Fec1 device configuration * Mostly the same that was set in the original host device configuration * The original interrupts can be left here as reference but they are updated at the end of config */ fec1: ethernet@5b040000 { reg = <0x00 0x5b040000 0x00 0x10000>; interrupts = , , , ; clocks = <&enet0_lpcg 4>, <&enet0_lpcg 2>, <&enet0_lpcg 3>, <&enet0_lpcg 0>, <&enet0_lpcg 1>; clock-names = \"ipg\", \"ahb\", \"enet_clk_ref\", \"ptp\", \"enet_2x_txclk\"; assigned-clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_CLKDIV>; assigned-clock-rates = <250000000>, <125000000>; fsl,num-tx-queues=<1>; fsl,num-rx-queues=<1>; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Fec1 devices clock controller device configuration * Mostly the same that was set in the original host device configuration * The actual clocks are nor configured so those need to be added to guest */ enet0_lpcg: clock-controller@5b230000 { compatible = \"fsl,imx8qxp-lpcg\"; reg = <0x00 0x5b230000 0x00 0x10000>; #clock-cells = <1>; clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&conn_axi_clk>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_TXCLK>, <&conn_ipg_clk>, <&conn_ipg_clk>; bit-offset = <0 4 8 12 16 20>; clock-output-names = \"enet0_lpcg_timer_clk\", \"enet0_lpcg_txc_sampling_clk\", \"enet0_lpcg_ahb_clk\", \"enet0_lpcg_rgmii_txc_clk\", \"enet0_lpcg_ipg_clk\", \"enet0_lpcg_ipg_s_clk\"; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Mailbox device for Fec1 (and SCU) * The host needs its own Mailbox (lsio_mu1 by default) and SCU * The original interrupt can be left here as reference but that is updated at the end of config */ lsio_mu2: mailbox@5d1d0000 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; reg = <0x00 0x5d1d0000 0x00 0x10000>; interrupts = ; #mbox-cells = <0x02>; status = \"okay\"; };\n}; The actual devices which were passed through may have some dependencies (such as clocks) which also need to be configured in the guest for the main devices to work properly. In most cases, they can be just copy-pasted from the original host configuration with a few minor alterations. Required dependencies need a bit of manual labor and depend on case to case. The main key is to go through the whole original device tree and list out device node names that are used by the passedthrough devices. This may require several passes as the dependencies may also contain some dependencies of their own. On top of the requirements, it is good also to check if the passedthrough devices are used by some other devices. Some devices may be used through a controller, such as lsio_mu2 is used by the main system control unit scu . In this case, the dependencies consist of several clock devices and their controller and also the i.MX 8 system control unit SCU device with its internals. The assisting devices can be added just before the start \" platform@c000000 \" bus configuration section: /** * Several clocks and a regulator copied from original host config. **/\nclk_dummy: clock-dummy { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <0>; clock-output-names = \"clk_dummy\";\n}; xtal32k: clock-xtal32k { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <32768>; clock-output-names = \"xtal_32KHz\";\n}; xtal24m: clock-xtal24m { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <24000000>; clock-output-names = \"xtal_24MHz\";\n}; reg_fec2_supply: fec2_nvcc { compatible = \"regulator-fixed\"; regulator-name = \"fec2_nvcc\"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>;\n//\tgpio = <&max7322 0 GPIO_ACTIVE_HIGH>; enable-active-high; status = \"okay\";\n}; conn_axi_clk: clock-conn-axi { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <333333333>; clock-output-names = \"conn_axi_clk\";\n}; conn_ahb_clk: clock-conn-ahb { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <166666666>; clock-output-names = \"conn_ahb_clk\";\n}; conn_ipg_clk: clock-conn-ipg { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <83333333>; clock-output-names = \"conn_ipg_clk\";\n}; conn_bch_clk: clock-conn-bch { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <400000000>; clock-output-names = \"conn_bch_clk\";\n}; /** * imx8 SCU device and its content with changed to use \"lsio_mu2\" mailbox * The original scu used lsio_mu1 so we need to use one of lsio_mu2 to lsio_mu4 **/\nscu { compatible = \"fsl,imx-scu\"; mbox-names = \"tx0\", \"rx0\", \"gip3\"; mboxes = <&lsio_mu2 0 0 &lsio_mu2 1 0 &lsio_mu2 3 3>; pd: imx8qx-pd { compatible = \"fsl,imx8qm-scu-pd\", \"fsl,scu-pd\"; #power-domain-cells = <1>; status = \"okay\"; wakeup-irq = <235 236 237 258 262 267 271 345 346 347 348>; }; clk: clock-controller { compatible = \"fsl,imx8qm-clk\", \"fsl,scu-clk\"; #clock-cells = <2>; clocks = <&xtal32k &xtal24m>; clock-names = \"xtal_32KHz\", \"xtal_24Mhz\"; }; iomuxc: pinctrl { compatible = \"fsl,imx8qm-iomuxc\"; }; ocotp: imx8qm-ocotp { compatible = \"fsl,imx8qm-scu-ocotp\"; #address-cells = <1>; #size-cells = <1>; read-only; fec_mac0: mac@1c4 { reg = <0x1c4 6>; }; fec_mac1: mac@1c6 { reg = <0x1c6 6>; }; }; rtc: rtc { compatible = \"fsl,imx8qm-sc-rtc\"; }; watchdog { compatible = \"fsl,imx8qm-sc-wdt\", \"fsl,imx-sc-wdt\"; timeout-sec = <60>; }; tsens: thermal-sensor { compatible = \"fsl,imx-sc-thermal\"; tsens-num = <6>; #thermal-sensor-cells = <1>; };\n}; /** * And the platform bus that was done earlier would start from here.. */\nplatform@c000000 { ...\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Adding Devices to Guest","id":"271","title":"Adding Devices to Guest"},"272":{"body":"Now we have most of the actual devices setup. Some final modifications for individual devices can be done at the end of the guest device tree configuration. These can be done outside the main node, as we just modify some node properties which are already defined. /** * For fec1 we need to update the interrupts to match the ones used by guest pass-through. * Most of the configuration is exactly the same that was set original imx8 config * Qemu starts its pass-through interrupts at 0x70 so lets change that * It is not strictly required to remove the possible iommus property but lets do that anyway */\n&fec1 { compatible = \"fsl,imx8qm-fec\", \"fsl,imx6sx-fec\"; interrupts = , , , ; /delete-property/ iommus; pinctrl-names = \"default\"; pinctrl-0 = <&pinctrl_fec1>; phy-mode = \"rgmii-txid\"; phy-handle = <ðphy0>; fsl,magic-packet; nvmem-cells = <&fec_mac0>; nvmem-cell-names = \"mac-address\"; status = \"okay\"; mdio { #address-cells = <1>; #size-cells = <0>; ethphy0: ethernet-phy@0 { compatible = \"ethernet-phy-ieee802.3-c22\"; reg = <0>; at803x,eee-disabled; at803x,vddio-1p8v; qca,disable-smarteee; vddio-supply = <&vddio0>; vddio0: vddio-regulator { regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; }; }; };\n}; /** * Not much to do for clock controller * Remove the iommus as it is not needed in guest and turn the device on */\n&enet0_lpcg { status = \"okay\"; /delete-property/ iommus;\n}; /** * Same for our mailbox * Update the interrupts to match next available interrupt in Qemu */\n&lsio_mu2 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; interrupts = ; /delete-property/ iommus; status = \"okay\";\n}; /** * In the host devicetree we had some pads which were transferred to guest. * There can be found in the original imx8 hosts config. **/\n&iomuxc { pinctrl-names = \"default\"; status = \"okay\"; pinctrl_fec1: fec1grp { fsl,pins = < IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETA_PAD 0x000014a0 IMX8QM_ENET0_MDC_CONN_ENET0_MDC 0x06000020 IMX8QM_ENET0_MDIO_CONN_ENET0_MDIO 0x06000020 IMX8QM_ENET0_RGMII_TX_CTL_CONN_ENET0_RGMII_TX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_TXC_CONN_ENET0_RGMII_TXC 0x06000020 IMX8QM_ENET0_RGMII_TXD0_CONN_ENET0_RGMII_TXD0 0x06000020 IMX8QM_ENET0_RGMII_TXD1_CONN_ENET0_RGMII_TXD1 0x06000020 IMX8QM_ENET0_RGMII_TXD2_CONN_ENET0_RGMII_TXD2 0x06000020 IMX8QM_ENET0_RGMII_TXD3_CONN_ENET0_RGMII_TXD3 0x06000020 IMX8QM_ENET0_RGMII_RXC_CONN_ENET0_RGMII_RXC 0x06000020 IMX8QM_ENET0_RGMII_RX_CTL_CONN_ENET0_RGMII_RX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_RXD0_CONN_ENET0_RGMII_RXD0 0x06000020 IMX8QM_ENET0_RGMII_RXD1_CONN_ENET0_RGMII_RXD1 0x06000020 IMX8QM_ENET0_RGMII_RXD2_CONN_ENET0_RGMII_RXD2 0x06000020 IMX8QM_ENET0_RGMII_RXD3_CONN_ENET0_RGMII_RXD3 0x06000020 >; };\n}; With our additional devices also some headers and definitions need to be included at the beginning of the device tree. These additions can be found also from the original i.MX 8 device tree files. See the full device tree below for reference.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Some Final Touches for Guest Devices","id":"272","title":"Some Final Touches for Guest Devices"},"273":{"body":"The device trees need to be compiled within the Linux kernel source directory. They depend on some kernel device tree headers and in the host device case—other device tree source files. Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling the Device Tree Source to Binary Form","id":"273","title":"Compiling the Device Tree Source to Binary Form"},"274":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-guest.dts imx8qm-mek_conn-guest.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-guest.preprocessed -o imx8qm-mek_conn-guest.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Guest","id":"274","title":"Compiling for Guest"},"275":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-host.dts imx8qm-mek_conn-host.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-host.preprocessed -o imx8qm-mek_conn-host.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Host","id":"275","title":"Compiling for Host"},"276":{"body":"To get passthrough working, i.MX 8 QM needs to be booted using our freshly built hosts imx8qm-mek_conn-host.dtb device tree file. When the system has booted, we need to set up the passedthrough devices for the VFIO driver and start QEMU with devices passed through. First, the devices need to be setup for VFIO: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After, QEMU can be started with our devices over the devices. This is just as an example. It may require a bit of change in other environments. In this example, the guest kernel image—ext2 rootfs and guest device tree—all use the same filename prefix imx8qm-mek_conn-guest . qemu-system-aarch64 \\ -M virt,gic-version=host -enable-kvm \\ -cpu host \\ -m 512M \\ -kernel \"imx8qm-mek_conn-guest.Image\" \\ -drive file=\"imx8qm-mek_conn-guest.ext2\",if=virtio,format=raw -dtb \"imx8qm-mek_conn-guest.dtb\" \\ -nographic \\ -append \"loglevel=7 rootwait root=/dev/vda console=ttyAMA0 earlycon earlyprintk\" \\ -device vfio-platform,host=5b230000.clock-controller \\ -device vfio-platform,host=5b040000.ethernet \\ -device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running QEMU with Passthrough Platform Devices","id":"276","title":"Running QEMU with Passthrough Platform Devices"},"277":{"body":"A hardened system installation covers multiple phases from establishing trust to the installation process. This section describes developing mechanisms to set up a Ghaf system in target hardware.","breadcrumbs":"Research Notes » System Installation » Approaches to Ghaf System Installation","id":"277","title":"Approaches to Ghaf System Installation"},"278":{"body":"The initial Ghaf installation approach to using Ghaf in development and demos is to build target system raw images (img) as binary disk images. The process results in an image based on modular and configurable declarations that are repeatably built using NixOS tooling. In practice, Ghaf disk images are built with: nix build .#package.. which results in disk image: result\\nixos.img For information on how to build and run a Ghaf image, see Build & Run for details. The initial Ghaf installation approach differed from the NixOS installation approach: The key reason in Ghaf was practical: initially, it is simple to write a specific target disk image to a USB boot media or target HW internal persistent media. The NixOS approach is more generic: supporting as many devices as possible. Similar to other Linux distributions like Ubuntu or Fedora. The development objective of Ghaf is to support a portable secure system that results in a target device-specific small trusted computing base. In practice, this means that Ghaf installations are by design not meant to support a generic Linux kernel with about all the device drivers (modules) out there like Ubuntu or Fedora. Ghaf reference installations are designed and to be developed to support particular (declaratively) hardened host and guest kernels with limited drivers only. The Ghaf approach significantly reduces the size of the trusted computing base as the unneeded modules and kernel parts are not taken into use.","breadcrumbs":"Research Notes » System Installation » Ghaf Initial Approach","id":"278","title":"Ghaf Initial Approach"},"279":{"body":"NixOS installation is well documented and thus is only summarized here. The key in the NixOS approach is to have a generic, bootable installation media (iso) like any other Linux distribution. As the NixOS installer aims to support as many devices as possible: the installer has a generic kernel (per hardware architecture), hardware recognition script, and generic requirements for system partitioning (boot and root partitions). Much of the NixOS installation can be modified interactively during installation either from a graphical installer, manually, or even declaratively. After installation, the whole system can be managed fully declaratively and purely (flakes) which is a novel approach compared to other Linux distributions. In practice, you can store your target system declaration in version control (git) to both maintain the system setup and back it up. Ghaf uses this approach for reference system declarations with flake.nix . NixOS usage is popular in cloud system installations. However many cloud providers do not provide NixOS as an option and bare-metal cloud is always not an alternative. For this need, approaches like nixos-anywhere have been developed. Using a smart approach with kexec , one can completely replace cloud provider default Linux options.","breadcrumbs":"Research Notes » System Installation » NixOS Approach","id":"279","title":"NixOS Approach"},"28":{"body":"Ghaf host in release mode has no nix tooling to work with the /nix/store. The /nix/store is only used to build the host system. In release mode, no modifications to nix store are possible. Changes are handled with update (MH08). Ghaf host in debug mode must support nix tooling via read-writable host filesystem. This must be taken into account in build-time nix module declarations.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No nix toolings (MH06)","id":"28","title":"No nix toolings (MH06)"},"280":{"body":"Ghaf introduced a modular structure for an interactive installer . The initial Ghaf reference installer still uses a raw disk image per target device. In practice, it just writes the raw disk image to the target device's internal persistent memory, for example, NVMe. The key idea with the modular interactive Ghaf installer is to enable customization of the installer per target device needs and at the same time support further development of the Ghaf graphical installer. The challenge with the interactive installer is to determine the combination of configurable options, to develop, and test them. Given the Ghaf approach of target device-specific installation Ghaf Initial Approach , the requirement for Ghaf a device-specific installer is challenging. Ghaf installer would have to either: embed the device-specific installation raw disk image in the installer (current way) which results in a huge installer image dynamically build the device-specific installation according to the user's interactive selection download a pre-built device-specific raw disk image which could result in a huge number of configurations use some combination of generic and specific (a compromise) None of which seem feasible in the long run. None of these are either Ghaf's objectives in the long run either. But how to achieve a device-specific secure system installation without getting lost in the generic Linux distro requirements?","breadcrumbs":"Research Notes » System Installation » Modular Interactive","id":"280","title":"Modular Interactive"},"281":{"body":"Now that we already have version control reference device-specific secure system declarations, the question is if we can transfer those into the device installations without requiring a user too many actions that make the installation unnecessarily difficult to implement. This alone is not a novel idea. Automatic Original Equipment Manufacturer (OEM) installers have been doing this for long. Those are often not declarative but rather scripted guidance to answer questions in generic installers. The target device-specific disk partitioning has been left to the user in manual installation. Traditionally in generic installers, it is also risk management. A user typically might not want her device disk wiped out without questions asked. Of course, we could let the user know what is about to happen and ask the user for agreement in confirmation before we install it fully automatically. Declarative configurations can handle user preferences. If one wants to change something, it can be changed in the declarations, stored, and shared via version control. Also including the declarative partitioning that has been tested from within the Ghaf installer. So, according to the We don't need NixOS cloud images anymore article, one can think that a secure, virtualized edge device could be handled similarly to cloud images. A simple (even secure) boot and installation supporting media could provide secure network access to the installation target device and then deploy the specific installation from declarations. In practice, a target device can be booted with a USB media (or even network boot) that provides SSH access to the device using an authorized key. After that, one command can be used to install specific secure system configuration automatically. This is used in Ghaf updates in development with nixos-rebuild ... switch and was also tested with new (clean) systems .","breadcrumbs":"Research Notes » System Installation » Declarative, Non-Interactive Installation","id":"281","title":"Declarative, Non-Interactive Installation"},"282":{"body":"As of now, the proposed approach declarative non-interactive approach using the example tooling depends on Internet access. Secure system installation will require steps additional to functional system setup. For example, establishing trust and setting up secrets. Many guidelines instruct to setup secrets in an air-gapped environment (without network access) for a reason. Above mentioned tools do not yet support offline installation .","breadcrumbs":"Research Notes » System Installation » Discussion","id":"282","title":"Discussion"},"29":{"body":"Ghaf host release mode kernel configuration must be minimal and hardened in the limits of HW vendor BSP. Kernel configuration per device is to be further analyzed iteratively. Limitations are to be documented per target device kernel configurations and HW support for virtualization.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal defconfig (MH07)","id":"29","title":"Minimal defconfig (MH07)"},"3":{"body":"The design principles influencing the architecture of the Ghaf Platform are the following: Edge security The Ghaf security architecture under development by SSRC aims to provide an understandable yet comprehensive view of security controls in the Platform so that vendors can make informed decisions and adopt the Platform for their use cases. The security architecture and subsequent research will be published by SSRC in a series of technical white papers. Zero trust The Ghaf Platform aims to apply the general security principles of zero trust within the software architecture and to act as an enabler for ZTA for edge devices within organizations. Trusted computing base The general principle for establishing the trusted Ghaf Platform code base is to rely on audited software and proven security modules while carefully evaluating and integrating new concepts. The modularized platform not only simplifies the integration of additional security measures but also facilitates the integration of hardware security features. Leveraging and contributing to open-source projects is not only a cornerstone for the Platform components' maintainability but also for the toolchain to increase transparency and auditability. By providing a hardened code base for the hypervisor and OS for the various VMs in the architecture, the Ghaf Platform leverages security benefits across all modules. Configurable, declarative and reproducible","breadcrumbs":"About Ghaf » Design Principles","id":"3","title":"Design Principles"},"30":{"body":"Ghaf host release mode filesystem updates are to be implemented using A/B update mechanism from adminvm. This will be designed and covered in a separate ADR.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Update via adminvm (MH08)","id":"30","title":"Update via adminvm (MH08)"},"31":{"body":"Ghaf minimal host in release mode must be implemented with read-only, integrity checked (dm-verity) filesystem.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Read-only filesystem (MH09)","id":"31","title":"Read-only filesystem (MH09)"},"32":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » netvm—Networking Virtual Machine","id":"32","title":"netvm—Networking Virtual Machine"},"33":{"body":"Proposed, partially implemented for development and testing. netvm reference declaration is available at netvm/default.nix .","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Status","id":"33","title":"Status"},"34":{"body":"Ghaf high-level design target is to secure a monolithic OS by modularizing the OS to networked VMs. The key security target is to not expose the trusted host directly to the Internet. This isolates the attack surface from the Internet to netvm . The following context diagram illustrates development and secure scenarios: Scope! Left : An insecure development scenario. The host is directly connected to the Internet, and the network is bridged from the host to other parts of the system. Right : A secure scenario. The network is passed through to netvm and routed to other parts of the system.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Context","id":"34","title":"Context"},"35":{"body":"The development scenario simplifies the target system network access and configuration. This ADR proposes the development netvm configuration is maintained to support system development. The secure scenario is proposed to be implemented with the use of passthrough to DMA and remap the host physical network interface card (PHY NIC) to netvm . This cannot be generalized for all hardware targets as it requires: Low-level device tree configuration for bootloader and host (at least on platform NIC). VMM host user space NIC bus mapping from the host to netvm . Native network interface driver (not virtual) in netvm . Native driver is bound the vendor BSP supported kernel version. These depend on the hardware setup. The proposed target setup is that the passthrough network device(s) are implemented as declarative nix-modules for easier user hardware-specific configuration. In practice, a user may configure the declaration of a PCI or USB network card that is available to the available hardware setup. netvm will provide: dynamic network configuration: A DHCP server for netvm to provide IP addresses for the other parts of the system, both static and dynamic. Routing from netvm to the Internet and/or inter VM. For common reference hardware with platform NIC, the configured modules for network interface passthrough are provided. For more information, see i.MX 8QM Ethernet Passthrough . Details of other network components, such as default firewall rules, DHCP (static and dynamic client addresses), routing, reverse proxies and security monitoring are to be described in their respective architecture decision records. In this context, these are illustrated in the context diagram on the right side of the netvm network interface driver.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Decision","id":"35","title":"Decision"},"36":{"body":"Isolating the attack surface from the host to networking-specific guest VM makes it easier to protect the critical host system from compromise. The isolation also makes it easier to deploy further security, such as a zero trust policy engine or intrusion detection system (IDS). Isolation makes configuration and comprehension of the system more difficult.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Consequences","id":"36","title":"Consequences"},"37":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » rust-vmm—Bus Passthrough Support for Rust VMMs","id":"37","title":"rust-vmm—Bus Passthrough Support for Rust VMMs"},"38":{"body":"Proposed, work in progress.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Status","id":"38","title":"Status"},"39":{"body":"This ADR is a work-in-progress note for Ghaf bus passthrough implementation that will support rust-vmm-based hypervisors. rust-vmm is an open-source project that empowers the community to build custom Virtual Machine Monitors (VMMs) and hypervisors. For more information, see https://github.com/rust-vmm/community . It is crucial to have bus devices passthrough support for ARM-based hardware as the bus is mainly used to connect the peripherals. Nowadays, the only hypervisor with some support for Platform bus is QEMU but the code is dated 2013 and not frequently used. On the other hand, one of the target hardware devices for Ghaf is NVIDIA Orin with an ARM core. To achieve Ghaf's security and hardware isolation goals, devices should support passthrough mode. Production-ready rust-vmm-based hypervisors ( crosvm , Firecracker , Cloud Hypervisor ) do not have support for Platform bus.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Context","id":"39","title":"Context"},"4":{"body":"As software supply chain security becomes more and more relevant to product security, it is necessary to provide mechanisms to assert reproducible builds, with a transparent chain from source code over the build environment to the final binaries. Such a system allows faster analysis of not only software bugs but also security vulnerabilities and their impact on a product without the need for extensive analysis. This approach further reduces the efforts required for patching and allows mechanisms for safe fallbacks to secure states. For more information on Ghaf supply chain security, see Supply Chain Security .","breadcrumbs":"About Ghaf » Build System and Supply Chain","id":"4","title":"Build System and Supply Chain"},"40":{"body":"Implementation of Platform bus passthrough is a base framework for Rust VMM. This will make it possible to use this mode within production-ready rust-vmm-based hypervisors. The main candidate here is crosvm. The necessity to support Platform bus in other hypervisors is subject to discussion. Technically, the Platform bus is rather a simple bus: it manages memory mapping and interrupts. Information about devices is not dynamic but is read from the device tree during the boot stage. The current status: Required Components Status of Readiness Host kernel side: VFIO drivers (to substitute real driver in host kernel) -/+ Host support for device trees + Guest kernel side: Device drivers for passthrough devices + Guest support for device trees + Rust VMM side: Bus support Needs to be developed. VMM support for device trees Rudimental, needs improvement.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Decision","id":"40","title":"Decision"},"41":{"body":"This section describes how securing Ghaf by reducing its attack surface—hardening—is done.","breadcrumbs":"Architecture » Hardening » Hardening","id":"41","title":"Hardening"},"42":{"body":"Ghaf has two types of kernels: host and guest. Hardening of these kernels varies in terms of hardware support and functionality required by the guest kernel in question. Within this context, the kernel always refers to the Linux operating system kernel.","breadcrumbs":"Architecture » Hardening » Kernel","id":"42","title":"Kernel"},"43":{"body":"NixOS provides several mechanisms to customize the kernel. The main methods are: Declaring kernel command line parameters : usage in Ghaf . Declaring kernel custom configuration : usage in Ghaf . Example of entering the kernel development shell to customize the .config and build it: ~/ghaf $ nix develop .#devShells.x86_64-linux.kernel-x86\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ cp ../modules/host/ghaf_host_hardened_baseline .config\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make menuconfig\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make -j$(nproc)\n...\nKernel: arch/x86/boot/bzImage Booting the built kernel with QEMU: [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ qemu-system-x86_64 -kernel arch/x86/boot/bzImage Validating with kernel hardening checker : [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline\n[+] Kconfig file to check: ../modules/host/ghaf_host_hardened_baseline\n[+] Detected microarchitecture: X86_64\n[+] Detected kernel version: 6.6\n[+] Detected compiler: GCC 120300\n...\n[+] Config check is finished: 'OK' - 188 / 'FAIL' - 5\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline|grep 'FAIL: '\nCONFIG_CFI_CLANG |kconfig| y | kspp | self_protection | FAIL: is not found\nCONFIG_CFI_PERMISSIVE |kconfig| is not set | kspp | self_protection | FAIL: CONFIG_CFI_CLANG is not \"y\"\nCONFIG_MODULES |kconfig| is not set | kspp |cut_attack_surface| FAIL: \"y\"\nCONFIG_FB |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"\nCONFIG_VT |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"","breadcrumbs":"Architecture » Hardening » Kernel Hardening Process","id":"43","title":"Kernel Hardening Process"},"44":{"body":"The host kernel runs on bare metal. The kernel is provided either with Linux upstream (x86_64) or with vendor BSP. The default Ghaf host kernel on x86_64 is maintained by Ghaf upstream package sources nixpkgs or Nix-packaged hardware-specific BSP (for example, NVIDIA Jetson-family of devices). x86-64-linux The host kernel hardening is based on Linux make tinyconfig. The default tinyconfig fails to assertions on NixOS without modifications. Assertions are fixed in ghaf_host_hardened_baseline Linux configuration under Ghaf modules/host/. In addition, NixOS (Ghaf baseline dependency) requires several kernel modules that are added to the config or ignored with allowMissing = true. As of now, the kernel builds and early boots on Lenovo X1.","breadcrumbs":"Architecture » Hardening » Host Kernel","id":"44","title":"Host Kernel"},"45":{"body":"This section describes Secure Boot and how to create secure keys. The reader is expected to know the fundamentals of UEFI and have a basic understanding of Secure Boot UEFI specification .","breadcrumbs":"Architecture » Secure Boot » Secure Boot","id":"45","title":"Secure Boot"},"46":{"body":"Secure Boot can be enabled on NixOS using Lanzaboote . Secure Boot is a UEFI feature that only allows trusted operating systems to boot. Lanzaboote has two components: lzbt and stub. lzbt signs and installs the boot files on the ESP. stub is a UEFI application that loads the kernel and initrd from the ESP.","breadcrumbs":"Architecture » Secure Boot » Enabling Secure Boot","id":"46","title":"Enabling Secure Boot"},"47":{"body":"Secure Boot keys can be created with sbctl , a Secure Boot Manager. sbctl is available in Nixpkgs as pkgs.sbctl. After you installed sbctl or entered a Nix shell, use the following command to create your Secure Boot keys: $ sudo sbctl create-keys Using \"sudo sbctl create-keys\" command user can create secure keys on the trusted system.","breadcrumbs":"Architecture » Secure Boot » Creating Secure Boot Keys","id":"47","title":"Creating Secure Boot Keys"},"48":{"body":"For demonstration purposes, we use pre-generated secure keys which are unsecure as whoever has keys can break into the system. Currently, the Secure Boot feature is enabled in debug builds only, since secure key creation requires sudo rights.","breadcrumbs":"Architecture » Secure Boot » Current Implementation","id":"48","title":"Current Implementation"},"49":{"body":"For enabling secure boot instructions, see the Part 2: Enabling Secure Boot section of the NixOS Secure Boot Quick Start Guide. Make sure your Secure Boot is enabled from the BIOS menu. Once you boot your system with Secure Boot enabled, enroll keys with the following command: $ sudo sbctl enroll-keys --microsoft Reboot the system to activate Secure Boot in the user mode: $ bootctl status\nSystem: Firmware: UEFI 2.70 (Lenovo 0.4720) Firmware Arch: x64 Secure Boot: enabled (user) TPM2 Support: yes Boot into FW: supported","breadcrumbs":"Architecture » Secure Boot » Secure Boot Verification","id":"49","title":"Secure Boot Verification"},"5":{"body":"The vision for the Ghaf platform is to create a virtualized, scalable reference platform that enables the building of secure products leveraging trusted, reusable, and portable software for edge devices. For more information on reference implementation for several devices, see Reference Implementations . Ghaf demo desktop and applications are illustrated in the screen capture below: Ghaf demo desktop and application","breadcrumbs":"Features » Features","id":"5","title":"Features"},"50":{"body":"The Ghaf stack includes a host with VMs. The host consists of two layers—OS kernel with hypervisor and OS user space—and provides virtualization for the guest VMs: system VMs, application or service VMs, or guest OSs. The stack layers and top-level components are illustrated in the following diagram. Stack! At the lowest levels of the stack lay hardware vendor-provided hardware, firmware, and board support package. The Ghaf project aims to use the vendor-provided components either as they are or configure them as supported by the vendor. Configuration may include, for example, host kernel hardening and including only selected components from the vendor BSP. The Ghaf project provides the reference minimal host with user space as defined in the Minimal Host .","breadcrumbs":"Architecture » Stack » Stack","id":"50","title":"Stack"},"51":{"body":"Ghaf provides reference system VMs for networking, GUI and storage. System VM Defined Implementation Status Networking Yes Partial GUI (optional) No Reference Wayland on host, to be isolated to VM GUI VM is considered optional as it may not be needed in some headless configurations.","breadcrumbs":"Architecture » Stack » System VMs","id":"51","title":"System VMs"},"52":{"body":"Ghaf should provide reference application VMs and service VMs that isolate respective software from the host. Depending on the use case requirements, these VMs will communicate with other parts of the system over networking and shared memory. As an example, application VMs (Wayland client) will communicate with the GUI VM (Wayland compositor) across the VM boundaries. This is called cross-domain Wayland. Another, already partially implemented area is networking VM that will securely provide Internet access to other VMs.","breadcrumbs":"Architecture » Stack » Application or Service VM","id":"52","title":"Application or Service VM"},"53":{"body":"Ghaf aims to support users with guest OSs such as other Linux distributions (Ubuntu, Fedora, etc.), Windows, and Android. Some of these have been already prototyped.","breadcrumbs":"Architecture » Stack » Guest OSs","id":"53","title":"Guest OSs"},"54":{"body":"Improvements to code and documentation are welcome! We would love to get contributions from you. For more information, see CONTRIBUTING.md . Some things that will increase the chance that your pull request is accepted faster: Spelling tools usage. Following our Style Guide . Writing a good commit message .","breadcrumbs":"Contributing » Contribution Guidelines","id":"54","title":"Contribution Guidelines"},"55":{"body":"Our hardened OS targets are build configurations based on NixOS. The canonical URL for the upstream Nix git repository is: https://github.com/NixOS . Build configurations define our dependencies and configuration changes to packages and build mechanisms of NixOS. If you want to try Ghaf, see Build and Run .","breadcrumbs":"Reference Implementations » Reference Implementations","id":"55","title":"Reference Implementations"},"56":{"body":"A build configuration is a target to build the hardened OS for a particular hardware device. Most packages used in a build configuration come from nixpkgs—NixOS Packages collection . The upstream first approach means we aim the fix issues by contributing to nixpkgs. At the same time, we get the maintenance support of NixOS community and the benefits of the Nix language on how to build packages and track the origins of packages in the software supply chain security. For more information, see Supply Chain Security . NixOS, a Linux OS distribution packaged with Nix, provides us with: generic hardware architecture support (x86-64 and AArch64) declarative and modular mechanism to describe the system Nix packaging language mechanisms: to extend and change packages with overlays to override packages Even when unmodified upstream is often preferred, even ideal, to ensure timely security updates from upstream—customizations are sometimes required.","breadcrumbs":"Reference Implementations » Approach","id":"56","title":"Approach"},"57":{"body":"To support a reference board without a vendor board support package (BSP)—bootloader, kernel, device drivers—is often not feasible. With this approach, we can overlay the generic NixOS Linux kernel with the vendor kernel and add a vendor bootloader to build a target image. Often the vendor BSPs are also open source but sometimes contain unfree binary blobs from the vendor's hardware. Those are handled by allowing unfree - if the user agrees with the end-user license agreement (EULA). If not, unfree support can be dropped along with that part of the BSP support. The same goes with the architectural variants as headless devices or end-user devices differ in terms what kind of virtual machines (VM) they contain. The user needs graphics architecture and VM support for the user interface (UI) whereas a headless device is more like a small server without the UI.","breadcrumbs":"Reference Implementations » Example","id":"57","title":"Example"},"58":{"body":"Development Build and Run Installer Cross-Compilation Creating Application VM Ghaf as Library: Templates Example Project Modules Options","breadcrumbs":"Reference Implementations » In This Chapter","id":"58","title":"In This Chapter"},"59":{"body":"Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress: Build and Run Running Remote Build on NixOS Installer Cross-Compilation Creating Application VM Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix . If you authorize your development SSH keys in the ssh.nix module and rebuild ghaf for your target device, you can use nixos-rebuild switch to quickly deploy your configuration changes to the target device over the network using SSH. For example: nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@ --fast switch\n...\nnixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@ --fast switch\n... Please note that with the -debug targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access. Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines .","breadcrumbs":"Reference Implementations » Development » Development","id":"59","title":"Development"},"6":{"body":"✅—integrated and tested in the main branch. No known regression. 🚧—prototyped or work in progress in the development branch. ❌—the feature has known regression or bugs.","breadcrumbs":"Features » Status","id":"6","title":"Status"},"60":{"body":"This tutorial assumes that you already have basic git experience. The canonical URL for the upstream Ghaf git repository is https://github.com/tiiuae/ghaf . To try Ghaf, you can build it from the source. Cross-compilation support is currently under development and not available for the building process.","breadcrumbs":"Reference Implementations » Development » Build and Run » Build and Run","id":"60","title":"Build and Run"},"61":{"body":"First, follow the basic device-independent steps: Clone the git repository https://github.com/tiiuae/ghaf . Ghaf uses a Nix flake approach to build the framework targets, make sure to: Install Nix or full NixOS if needed: https://nixos.org/download.html . Enable flakes: https://nixos.wiki/wiki/Flakes#Enable_flakes . To see all Ghaf-supported outputs, type nix flake show. Set up an AArch64 remote builder: https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html . Then you can use one of the following instructions for the supported targets: Device Architecture Instruction Virtual Machine x86_64 Running Ghaf Image for x86 VM (ghaf-host) Generic x86 Сomputer x86_64 Running Ghaf Image for x86 Computer Lenovo X1 Carbon Gen 11 x86_64 Running Ghaf Image for Lenovo X1 NVIDIA Jetson AGX Orin AArch64 Ghaf Image for NVIDIA Jetson Orin AGX NXP i.MX 8QM-MEK AArch64 Building Ghaf Image for NXP i.MX 8QM-MEK MICROCHIP icicle-kit RISCV64 Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Reference Implementations » Development » Build and Run » Prerequisites","id":"61","title":"Prerequisites"},"62":{"body":"Before you begin, check device-independent prerequisites . From the ghaf source directory, run the nix run .#packages.x86_64-linux.vm-debug command. This creates ghaf-host.qcow2 copy-on-write overlay disk image in your current directory. If you do unclean shutdown for the QEMU VM, you might get weird errors the next time you boot. Simply removing ghaf-host.qcow2 should be enough. To cleanly shut down the VM, from the menu bar of the QEMU Window, click Machine and then Power Down.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 VM (ghaf-host)","id":"62","title":"Running Ghaf Image for x86 VM (ghaf-host)"},"63":{"body":"Before you begin, check device-independent prerequisites . Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#generic-x86_64-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 Computer","id":"63","title":"Running Ghaf Image for x86 Computer"},"64":{"body":"Lenovo X1 is the reference x86_64 device for the Ghaf project. Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#lenovo-x1-carbon-gen11-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for Lenovo X1","id":"64","title":"Running Ghaf Image for Lenovo X1"},"65":{"body":"Before you begin: Check device-independent prerequisites . If you use a new device, flash bootloader firmware first. Then you can build and run a Ghaf image . Flashing NVIDIA Jetson Orin AGX Run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug-flash-script It will build the Ghaf image and bootloader firmware, and prepare the flashing script. Give \"yes\" answers to all script questions. The building process takes around 1,5 hours. Set up the following connections: Connect the board to a power supply with a USB-C cable. Connect a Linux laptop to the board with the USB-C cable. Connect the Linux laptop to the board with a Micro-USB cable to use serial interface . For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. After the build is completed, put the board in recovery mode. For more information, see the Force Recovery Mode section in the Jetson AGX Orin Developer Kit User Guide. Run the flashing script: sudo ~/result/bin/flash-ghaf-host There is a time-out for this operation, so run the script within one minute after putting the device in recovery mode. If you got the error message \"ERROR: might be timeout in USB write.\": Reboot the device and put it in recovery mode again. Check with the lsusb command if your computer can still recognize the board, and run the flash script again. Restart the device after flashing is done. Building and Running Ghaf Image for NVIDIA Jetson Orin AGX After the latest firmware is flashed , it is possible to use a simplified process by building only the Ghaf disk image and running it from external media: To build the target image, run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the hardware from the USB media. In the current state of Ghaf, it is a bit tricky to make NVIDIA Jetson Orin AGX boot Ghaf from a USB if the same thing has already been flashed on the boards's eMMC. To succeed, you can change partition labels on eMMC (or optionally wiping everything away by formatting): Log in as a root: sudo su Check the current labels: lsblk -o name,path,fstype,mountpoint,label,size,uuid Change the ext4 partition label: e2label /dev/mmcblk0p1 nixos_emmc Change the vfat partition label: dosfslabel /dev/mmcblk0p2 ESP_EMMC Verify the labels that were changed: lsblk -o name,path,fstype,mountpoint,label,size,uuid After these changes NVIDIA Jetson Orin AGX cannot boot from its internal eMMC. It will boot from the USB device with the correct partition labels.","breadcrumbs":"Reference Implementations » Development » Build and Run » Ghaf Image for NVIDIA Jetson Orin AGX","id":"65","title":"Ghaf Image for NVIDIA Jetson Orin AGX"},"66":{"body":"Before you begin, check device-independent prerequisites . In the case of i.MX8, Ghaf deployment consists of creating a bootable SD card with a first-stage bootloader (Tow-Boot) and USB media with the Ghaf image: To build and flash Tow-Boot bootloader: $ git clone https://github.com/tiiuae/Tow-Boot.git && cd Tow-Boot\n$ nix-build -A imx8qm-mek\n$ sudo dd if=result/ shared.disk-image.img of=/dev/ To build and flash the Ghaf image: Run the nix build .#packages.aarch64-linux.imx8qm-mek-release command. Prepare the USB boot media with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card and USB boot media into the board and switch the power on.","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for NXP i.MX 8QM-MEK","id":"66","title":"Building Ghaf Image for NXP i.MX 8QM-MEK"},"67":{"body":"Before you begin: Check device-independent prerequisites . Make sure HSS version 0.99.35-v2023.02 is programmed in your board eNVM. The version can be seen in the pre-bootloader log. Check the video guide to build HSS and program the eNVM: How to build HSS and program the eNVM? In the case of the Icicle Kit, Ghaf deployment consists of creating an SD image with U-Boot and Linux kernel from Microchip, and Ghaf-based NixOS rootfs: Build a Ghaf SD image: a. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-release command to release the image. b. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-debug command to debug the image. Flash the Ghaf SD image: If you want to use a SD card: Prepare the SD card with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card into the board and switch the power on. If you want to use the onboard MMC: You can directly flash a NixOS image to onboard an MMC card: dd if=./result/nixos.img of=/dev/ bs=32M. For more information on how to access the MMC card as a USB disk, see MPFS Icicle Kit User Guide .","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for Microchip Icicle Kit","id":"67","title":"Building Ghaf Image for Microchip Icicle Kit"},"68":{"body":"To set up a remote build on NixOS: Identify required SSH keys for remote SSH connection. Set up configurations. If you hit an issue, check Troubleshooting .","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Running Remote Build on NixOS","id":"68","title":"Running Remote Build on NixOS"},"69":{"body":"This step assumes that public SSH keys were generated and copied ( ssh-copy-id ) both for normal and root users. For more information, see Setting up public key authentication . Before you begin, make sure an SSH connection is established to the remote host for both normal and root users: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\nnix store ping --store ssh://USER@REMOTE_IP_ADDRESS 1.1. [Local Machine] Configuring SSH Keys Do the following on a local machine: Change directory to Home Directory with SSH: cd .ssh The public keys of the remote machine are located in the known_hosts file. These keys are created and configured after the ssh-copy-id command. Make sure the keys are there. If they are not there: Access the remote machine. Run cd /etc/ssh. Retrieve and copy the public keys. Go back to the local machine and paste them into known_hosts . Navigate to the /etc/ssh/ directory: cd /etc/ssh Make sure the ssh_known_hosts file contains the same public keys as the remote machine (same as .ssh/knwon_hosts). Otherwise, specify it in the configuration.nix file. Use CMD as the root user: sudo -i Make sure the root user’s keys are different from the user’s keys: cd .ssh TIP :.ssh is a user-level access and /etc/ssh is system-wide. 1.2. Accessing Remote Machine Using SSH Do the following: Navigate the authorized_keys file: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\ncd .ssh\nsudo nano authorized_keys Make sure that both user and root public keys for the local machine are located there: The user’s public key can be obtained from /home/username/.ssh/id_rsa.pub. The root user's public key can be obtained from /root/.ssh/id_rsa.pub.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 1. Configuring SSH Keys","id":"69","title":"1. Configuring SSH Keys"},"7":{"body":"Orin—NVIDIA Jetson AGX Orin as the main reference device. x86—generic x86_64; tested on Intel NUC (Next Unit of Computing) or laptop. Lenovo X1—Lenovo X1 Carbon Gen 11 laptop. aarch64—generic AArch64; tested on an ARM server, laptop (e.g. Apple MacBook's), or NVIDIA Jetson AGX Orin. All variants—supported devices from Architectural Variants . The following tables show the status of Ghaf Platform features:","breadcrumbs":"Features » Reference Devices","id":"7","title":"Reference Devices"},"70":{"body":"2.1. [Local Machine] Setting Up Configuration Files Do the following on a local machine: Set configuration variables in configuration.nix and nix.conf: Use the following commands: cd /etc/nixos\nsudo nano configuration.nix Add lib in the header like so: { config, pkgs, lib, ... }:. Edit the nix.conf file: environment.etc.\"nix/nix.conf\".text = lib.mkForce '' # Your custom nix.conf content here builders = @/etc/nix/machines require-sigs = false max-jobs = 0 # to use remote build by default not local substituters = https://cache.nixos.org/ trusted-public-keys = cache.nixos.org-1:6pb16ZPMQpcDShjY= cache.farah:STwtDRDeIDa... build-users-group = nixbld trusted-users = root farahayyad experimental-features = nix-command flakes\n''; For more information, see the nix.conf section of the Nix Reference Manual. Rebuild NixOS by running: sudo nixos-rebuild switch Create or set the machines file: Use the following commands: cd /etc/nixos\nsudo nano machines Specify the SSH settings: [ssh://]USER@HOST target-spec [SSH identity file] [max-jobs] [speed factor]\n[supported-features] [mandatory-features] [ssh-public-key-encoded] Parameters inside ‘[ ]’ are optional. The ssh-public-key-encoded is the base-64 encoded public key of the remote machine. Get the encoding using: echo -n \"your_public_key_here\" | base64 If omitted, SSH will use its regular known_hosts file. For more information, see the Remote Builds section of the Nix Reference Manual. 2.2. [Remote Machine] Setting Up Configuration Files Do the following on a remote machine: Specify the sshd_config settings: Use the following commands: cd /etc/ssh\nsudo nano sshd_config Make sure PubkeyAuthentication is set as yes . Specify the /etc/nix/nix.conf settings: Use the following commands: cd /etc/nix\nsudo nano nix.conf Edit the nix.conf file: trusted-public-keys = cache.nixos.org-1:61o0gWypbMrAURk...\nbuild-users-group = nixbld\nrequire-sigs = false\ntrusted-users = root farahayyad jk\nbinary-caches = https://cache.nixos.org/\nsubstituters = https://cache.nixos.org/\nsystem-features = nixos-test benchmark big-parallel kvm\nbinary-cache-public-keys = cache.nixos.org-1:6NCHD59X43...\nexperimental-features = nix-command flakes Run the following command to restart daemon and update all the preceding changes: systemctl restart nix-daemon.service","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 2. Setting Up Configuration Files","id":"70","title":"2. Setting Up Configuration Files"},"71":{"body":"Single-User Nix Installation Issues VPN Setup for Remote Access Private Key on Local Machine Not Matching Public Key on Remote Machine","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Troubleshooting","id":"71","title":"Troubleshooting"},"72":{"body":"This issue typically arises when Nix is installed in a single-user mode on the remote machine, which can create permission issues during multi-user operations. If an operation fails with the following error message: could not set permissions on '/nix/var/nix/profiles/per-user' to 755: Operation not permitted reinstall Nix in a multi-user setup: Uninstall Nix using a single-user mode: rm -rf /nix Install Nix in a multi-user mode: sh <(curl -L https://nixos.org/nix/install) --daemon For more information about Nix security modes, see the Security section of the Nix Reference Manual.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Single-User Nix Installation Issues","id":"72","title":"Single-User Nix Installation Issues"},"73":{"body":"A VPN is needed, if the local machine is not on the same local network as your remote build machine. To set up a VPN using OpenConnect , do the following: Install OpenConnect: nix-env -iA nixos.openconnect Establish a VPN connection: sudo openconnect --protocol=gp -b access.tii.ae Once authenticated, you establish a secure connection to your network. Use ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE to check if it is possible to connect to the remote machine.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » VPN Setup for Remote Access","id":"73","title":"VPN Setup for Remote Access"},"74":{"body":"Using mismatched key pairs could result in the Permission denied error. Ensure and double-check that you are using the right key pairs. If you choose to use/present your local’s RSA private key, make sure that it is the corresponding RSA public key that is in the remote’s authorized_file, not the ED25519 or ECDSA public keys.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Private Key on Local Machine Not Matching Public Key on Remote Machine","id":"74","title":"Private Key on Local Machine Not Matching Public Key on Remote Machine"},"75":{"body":"","breadcrumbs":"Reference Implementations » Development » Installer » Installer","id":"75","title":"Installer"},"76":{"body":"You can obtain the installation image for your Ghaf configuration. To check possible configuration options, see Modules Options . Set ghaf.installer.enable to true. Add nixos-generators module to ghaf.installer.imgModules list to configure installer image type. Choose installer modules from ghaf.installer.installerModules and set ghaf.installer.enabledModules to list of their names. Write code for the installer in ghaf.installer.installerCode. {config, ...}: { ghaf.installer = { enable = true; imgModules = [ nixos-generators.nixosModules.raw-efi ]; enabledModules = [\"flushImage\"]; installerCode = '' echo \"Starting flushing...\" if sudo dd if=${config.system.build.${config.formatAttr}} of=/dev/${config.ghaf.installer.installerModules.flushImage.providedVariables.deviceName} conv=sync bs=4K status=progress; then sync echo \"Flushing finished successfully!\" echo \"Now you can detach installation device and reboot to Ghaf.\" else echo \"Some error occured during flushing process, exit code: $?.\" exit fi ''; };\n} After that you can build an installer image using this command: nix build .#nixosConfigurations..config.system.build.installer","breadcrumbs":"Reference Implementations » Development » Installer » Configuring and Building Installer for Ghaf","id":"76","title":"Configuring and Building Installer for Ghaf"},"77":{"body":"To add an installer module, replace the corresponding placeholders with your code and add this to your configuraiton: ghaf.installer.installerModules. = { requestCode = '' # Your request code written in Bash ''; providedVariables = { # Notice the dollar sign before the actual variable name in Bash. = \"$\"; };\n};","breadcrumbs":"Reference Implementations » Development » Installer » Adding Installer Modules","id":"77","title":"Adding Installer Modules"},"78":{"body":"Provided variables show variable names in Nix. For actual names of variables in Bash, see the sources of the module.","breadcrumbs":"Reference Implementations » Development » Installer » Built-in Installer Modules","id":"78","title":"Built-in Installer Modules"},"79":{"body":"Provided variables: deviceName: name of the device on which image should be flushed (e.g. \"sda\", \"nvme0n1\")","breadcrumbs":"Reference Implementations » Development » Installer » flushImage","id":"79","title":"flushImage"},"8":{"body":"Feature Status Reference Device Details Ghaf in virtual machine ✅ x86 nix run .#packages.x86_64-linux.vm-debug aarch64 reference image ✅ Orin Based on Jetson Linux , OE4T and jetpack-nixos . aarch64 reference image ✅ imx8qm Based on NXP BSP, implemented as nixos-hardware module x86 generic image ✅ x86 Generic x86 computer, based on generic NixOS . NOTE: requires device specific configuration. Lenovo X1 reference image ✅ Lenovo X1 x86_64 laptop computer, supports basic compartmentalized environment Native build ✅ aarch64, x86 Remote aarc64 nixos builders recommended Cross-compilation 🚧 aarch64, riscv64 Depends on NixOS nixpkgs 23.05 support for cross-compilation CI builds ✅ All Only main-branch, not for all PRs . Emulated build ❌ aarch64 binfmt, may freeze the build machine. Not recommended. See instructions.","breadcrumbs":"Features » Release Builds and Hardware Architecture Support","id":"8","title":"Release Builds and Hardware Architecture Support"},"80":{"body":"Cross-compilation is currently under development and cannot be used properly on all the supported device configurations. Ghaf is targeted at a range of devices and form factors that support different instruction set architectures (ISA). Many small form-factor edge devices are not powerful enough to compile the needed applications or OSs that run on them. As the most common ISA used in desktops and servers is x_86, this will generally require that the code is cross-compiled for target ISA e.g. AArch64 or RISC-V. NixOS and Nixpkgs have good support for cross-compilation, however, there are still some that can not be compiled in this way.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation","id":"80","title":"Cross-Compilation"},"81":{"body":"An SD image for the Microchip Icicle Kit can be cross-compiled from an x86 machine. To generate the release or debug an SD image run the following command: $> nix build .#packages.riscv64-linux.microchip-icicle-kit-","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation for Microchip Icicle Kit (RISCV64)","id":"81","title":"Cross-Compilation for Microchip Icicle Kit (RISCV64)"},"82":{"body":"This will involve working with upstream package maintainers to ensure that the packages are cross-compilation aware. This will be addressed on a package-by-package basis.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Future Cross-Compilation Support","id":"82","title":"Future Cross-Compilation Support"},"83":{"body":"binfmt allows running different ISA on a development machine. This is achieved by running the target binary in an emulator such as QEMU or in a VM. So while not cross-compiled it can enable development for some embedded device configurations. To enable binfmt, we recommend to set the following in your host systems configuration.nix: boot.binfmt.emulatedSystems = [ \"riscv64-linux\" \"aarch64-linux\"\n]; In addition, it is recommended to enable KVM support with either boot.kernelModules = [ \"kvm-amd\" ]; or boot.kernelModules = [ \"kvm-intel\" ]; depending on whether your development host is running AMD or Intel processor.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » binfmt Emulated Build","id":"83","title":"binfmt Emulated Build"},"84":{"body":"Application VM (AppVM) is a VM that improves trust in system components by isolating applications from the host OS and other applications. Virtualization with hardware-backed mechanisms provides better resource protection than traditional OS. This lets users use applications of different trust levels within the same system without compromising system security. While the VMs have overhead, it is acceptable as a result of improved security and usability that makes the application seem like it is running inside an ordinary OS. As a result, both highly trusted applications and untrusted applications can be hosted in the same secure system when the concerns are separated in their own AppVMs. To create an AppVM: Add AppVM description. Add an app launcher in GUI VM.","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Creating Application VM","id":"84","title":"Creating Application VM"},"85":{"body":"Add the VM description in the target configuration. lenovo-x1.nix already has AppVMs inside for Chromium, Gala, and Zathura applications. AppVMs Example vms = with pkgs; [ { name = \"chromium\"; packages = [chromium]; macAddress = \"02:00:00:03:03:05\"; ramMb = 3072; cores = 4; } { name = \"gala\"; packages = [(pkgs.callPackage ../packages/gala {})]; macAddress = \"02:00:00:03:03:06\"; ramMb = 1536; cores = 2; } { name = \"zathura\"; packages = [zathura]; macAddress = \"02:00:00:03:03:07\"; ramMb = 512; cores = 1; }\n]; Each VM has the following properties: Property Type Unique Description Example name str yes This name is postfixed with -vm and will be shown in microvm list. The name - e.g. chromium-vm will be also the VM hostname. The lenght of the name must be 8 characters or less. “chromium” packages list of types.package no Packages to include in a VM. It is possible to make it empty or add several packages. [chromium top] macAddress str yes Needed for network configuration. \"02:00:00:03:03:05\" ramMb int, [1, …, host memory] no Memory in MB. 3072 cores int, [1, …, host cores] no Virtual CPU cores. 4","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding AppVM Description","id":"85","title":"Adding AppVM Description"},"86":{"body":"To add an app launcher, add an element in the guivm.nix file to the graphics.launchers list. A launcher element has 2 properties: path – path to the executable you want to run, like a graphical application. icon – path to an icon to show. Check the example launchers at guivm.nix .","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding Application Launcher in GUI VM","id":"86","title":"Adding Application Launcher in GUI VM"},"87":{"body":"Labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment. To use Labwc as your default desktop environment, add it as a module to Ghaf: change the configuration option profiles.graphics.compositor = \"labwc\" or uncomment the corresponding line in guivm.nix file. The basis of the labwc configuration is the set of following files: rc.xml, menu.xml, autostart, and environment. These files can be edited by substituting in the Labwc overlay overlays/custom-packages/labwc/default.nix.","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Labwc Desktop Environment","id":"87","title":"Labwc Desktop Environment"},"88":{"body":"The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS . Ghaf uses patched Labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration = yes). The borderColor property is responsible for the frame color. TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients. For example: \n Foot Terminal with Aqua Colored Frame","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Window Border Coloring","id":"88","title":"Window Border Coloring"},"89":{"body":"Ghaf is a framework for creating virtualized edge devices, it is therefore expected that projects wishing to use Ghaf should import it to create a derived work for the specific use case. In practice, projects should import Ghaf and its dependencies into an external version control (git) repository. Ghaf provides templates for the reference hardware to ease this process. In this section: overview of Ghaf usage and upstream dependencies required steps to create a Ghaf-based project updating the project to get the latest changes customization of the project using Ghaf-modules and Nix-supported mechanisms The possible Ghaf usage in your project is illustrated in the following diagram: Ghaf Usage Overview The Ghaf Platform repository provides declarative modules and reference implementations to help with declaring your customized secure system. External repositories help make various HW options, system image generators, and reference board-support packages available.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Ghaf as Library: Templates","id":"89","title":"Ghaf as Library: Templates"},"9":{"body":"Feature Status Reference Device Details Quick target update ✅ all nixos-rebuild --flake .#nvidia-jetson-orin-debug --target-host root@ghaf-host --fast switch aarch64 device flashing ✅ Orin Full device software flashing using x86 machine root filesystem flashing ✅ x86, imx8qm dd image to bootable media - see Debug: SSH ✅ Orin, x86 Host access only in -debug-target, see authentication.nix Debug: Serial ✅ all Host access only in -debug-target - e.g. screen /dev/ttyACM0 115200 Compartmentalized environment 🚧 Lenovo X1 NetVM, GUI VM (with GPU passthrough) plus some Application VMs","breadcrumbs":"Features » Development","id":"9","title":"Development"},"90":{"body":"Check the available target templates: nix flake show github:tiiuae/ghaf Select the appropriate template based on reference implementation, for example, target-aarch64-nvidia-orin-agx: nix flake new --template github:tiiuae/ghaf#target-aarch64-nvidia-orin-agx ~/ghaf-example\nwrote: ~/ghaf-example/flake.nix See your project template outputs: cd ~/ghaf-example/\nnix flake show\ngit+file://~/ghaf-example\n├───formatter\n│ ├───aarch64-linux: package 'alejandra-3.0.0'\n│ └───x86_64-linux: package 'alejandra-3.0.0'\n├───nixosConfigurations\n│ └───PROJ_NAME-ghaf-debug: NixOS configuration\n└───packages\n├───aarch64-linux\n│ └───PROJ_NAME-ghaf-debug: package 'nixos-disk-image'\n└───x86_64-linux\n└───PROJ_NAME-ghaf-debug-flash-script: package 'flash-ghaf' Change the placeholder to the name of your project your_project: sed -i 's/PROJ_NAME/your_project/g' flake.nix","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Using Ghaf Templates","id":"90","title":"Using Ghaf Templates"},"91":{"body":"To update your project, run nix flake update. This checks the inputs for updates and based on the availability of the updates, and then generates an updated flake.lock which locks the specific versions to support the reproducible builds without side effects. In practice, a Nix flake does not allow floating inputs but all the inputs and declared packages must be mapped to specific hashes to get exact revisions of your inputs. This mechanism also supports the supply-chain security: if someone changes the upstream project, for example, by overwriting a part of the input so that the hash changes, you will notice. After updating, reviewing, and testing: commit the updated flake.lock to your version history to share reproducible builds within your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Updating Ghaf Revision","id":"91","title":"Updating Ghaf Revision"},"92":{"body":"To use the Ghaf declarative module system, check what you need in your system and choose the modules options you need. For example, import the ghaf graphics-module and declare that you will need the reference Wayland compositor Weston and the demo applications: { ghaf.graphics.weston = { enable = false; enableDemoApplications = false; }; } After the change, rebuild the system and switch it into use in your target device and it will run with the GUI and apps removed. After testing, you can commit the changes and share them with your colleagues to build the same system (even a system image) as needed in your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Customizing Ghaf Modules","id":"92","title":"Customizing Ghaf Modules"},"93":{"body":"The compartmentalization could be applied to many specific x86_64 computers and laptops with some customization applied to the Ghaf. The best way to do the Ghaf customization is by using Ghaf templates: Create a template project as described in the Ghaf as Library section. Adjust your system configuration in accordance with your HW specification. Determine all VIDs and PIDs of the devices that are passed to the VMs. Add GUIVM configuration, NetworkVM configuration, and optionally some AppVMs. Set up Weston panel shortcuts. You can refer to the existing project example for Lenovo T14 and Lenovo X1 laptops . Creating the structure that includes all necessary data for the device passthrough: # File 'my-hardware/lenovo-t14.nix':\n# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors\n# SPDX-License-Identifier: Apache-2.0\n#\n# Generic x86_64 computer -target\n{ deviceName = \"lenovo-t14\"; networkPciAddr = \"0000:00:14.3\"; networkPciVid = \"8086\"; networkPciPid = \"02f0\"; gpuPciAddr = \"0000:00:02.0\"; gpuPciVid = \"8086\"; gpuPciPid = \"9b41\"; usbInputVid = \"046d\"; usbInputPid = \"c52b\";\n} The fields of that structure are self-explanatory. Use the lspci -nnk command to get this data from any Linux OS running on the device.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Example Project","id":"93","title":"Example Project"},"94":{"body":"If after booting you see a black screen, try the following to detect the issue: Add a Wi-Fi network name and password to the lenovo-x1-carbon.nix file instead of #networks.\"ssid\".psk = \"psk\". Build and run the image. For more information, see Running Ghaf Image for Lenovo X1 . Identify an IP address by a MAC address with the arp command. If a MAC address is unknown, you can boot into the NixOS image or any other OS to find it, or try the latest addresses that arp returns. Connect using SSH (login/password ghaf/ghaf). Then connect from netvm to the host using ssh 192.168.101.2 (login/password ghaf/ghaf). Check running VMs with microvm -l. Check a GUIVM log using journalctl -u microvm@guivm. If GUIVM does not start, you can try to start it manually with /var/lib/microvms/guivm/current/bin/microvm-run. In case when GUIVM did not start with the error message that the device /dev/mouse or /dev/touchpad was not found, it means that the model of the touchpad in the laptop is different since it was bought in another country and has a different SKU (stock keeping unit). To add support for a new touchpad, do the following: On the ghaf host, check the devices in /dev/input/by-path that contain “-event-” in the name. Use the command like udevadm info -q all -a /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-event-mouse | grep name for the name of each of these devices. By name you can understand which devices belong to the touchpad. For example, on laptops in Finland they look like “SYNA8016:00 06CB:CEB3 Mouse” and “SYNA8016:00 06CB:CEB3 Touchpad”, and in the UAE they are “ELAN067C:00 04F3:31F9 Mouse” and “ELAN067C:00 04F3:31F9 Touchpad.” If there are no such devices in /dev/input/by-path, then you can check the devices /dev/input/event* with a similar command. When the necessary device names are found, add them to services.udev.extraRules in the lenovo-x1-carbon.nix file, rebuild the image and test the changes.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Troubleshooting for Lenovo X1 Laptop","id":"94","title":"Troubleshooting for Lenovo X1 Laptop"},"95":{"body":"","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Modules Options","id":"95","title":"Reference Implementations"},"96":{"body":"Embedded virtualization builds on technologies from cloud security. Cloud services provide scalable but isolated computation — your business case is isolated from someone else's business case. At the hardware level. Similarly, hardware support in modern personal devices has enabled the isolation of device resources with virtualization. This provides the baseline for secure system design for use case protection. In practice, the user can use the same device with a trusted application and with an untrusted application. Both applications are isolated from each other to protect valuable user data and privacy. Our systems are built using Nixpkgs and various Nix -based tools and configurations. For more information on Nix ecosystem, see nix.dev .","breadcrumbs":"Technologies » Technologies","id":"96","title":"Technologies"},"97":{"body":"Protected computation resources include CPU, memory, storage, and other IO devices. Allocation of these resources is managed with the hypervisor. In our reference implementation, we use KVM (Kernel Virtual Machine) from Linux to virtualize hardware access. From hardware, this requires MMU (memory management unit) for CPU physical to virtual address mapping and IOMMU for direct memory access (DMA) capable device virtual addresses to physical addresses of the main memory. Many 64-bit CPUs support virtualization via hypervisor extensions already. Our reference implementation supports x86-64 and Aarch64, and we follow RISC-V hypervisor extensions development.","breadcrumbs":"Technologies » Hardware Requirements for Virtualization","id":"97","title":"Hardware Requirements for Virtualization"},"98":{"body":"On top of OS kernel hypervisor support with KVM. We allocate virtual resources for use cases with user-space virtual machine manager (VMM) using rust-vmm based projects such as cloud-hypervisor and crosvm . QEMU is enabled for certain development use cases. In addition, we have also experimental, Aarch64 demonstrated support for a KVM variant— KVMS —which adds security features to standard KVM.","breadcrumbs":"Technologies » Virtual Machine Manager (VMM)","id":"98","title":"Virtual Machine Manager (VMM)"},"99":{"body":"Compartmentalization Passthrough Binding Device to VFIO Driver NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization Hypervisor Options","breadcrumbs":"Technologies » In This Chapter","id":"99","title":"In This Chapter"}},"length":283,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.7416573867739413},"272":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"272":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"271":{"tf":2.449489742783178}}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"2":{"df":1,"docs":{"272":{"tf":1.0}}},"3":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.3166247903554},"196":{"tf":1.7320508075688772},"266":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"271":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"271":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"266":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":7,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"266":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"266":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"271":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"235":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":10,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"264":{"tf":1.0},"266":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"44":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":35,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"281":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"271":{"tf":1.0}},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.449489742783178},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.0},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":26,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.7320508075688772},"224":{"tf":1.0},"235":{"tf":2.0},"247":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":2.23606797749979},"35":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.0},"281":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"266":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"268":{"tf":1.0},"281":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.8284271247461903}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"258":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.0},"278":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"261":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"279":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"268":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"10":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":2.23606797749979},"35":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":57,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"262":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.242640687119285},"158":{"tf":2.23606797749979},"249":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":4.0},"272":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":2.0},"136":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"260":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":2.0},"271":{"tf":7.211102550927978},"272":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"266":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"250":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"280":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"264":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"281":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.0},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"279":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":4.358898943540674},"272":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"264":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"280":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":3.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"281":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"271":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":2.8284271247461903},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"271":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"271":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"122":{"tf":1.0},"132":{"tf":2.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"270":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"281":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"277":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"253":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"251":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.8284271247461903},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"28":{"tf":1.0},"281":{"tf":2.6457513110645907},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"239":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"272":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"266":{"tf":4.69041575982343},"272":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"278":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.449489742783178},"273":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":46,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.0},"113":{"tf":4.0},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":2.0},"264":{"tf":4.123105625617661},"266":{"tf":3.0},"267":{"tf":2.6457513110645907},"268":{"tf":1.4142135623730951},"269":{"tf":4.0},"270":{"tf":3.605551275463989},"271":{"tf":4.795831523312719},"272":{"tf":3.0},"273":{"tf":2.6457513110645907},"276":{"tf":3.3166247903554},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.8284271247461903},"281":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"280":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"278":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"281":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"a":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"276":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.3166247903554},"118":{"tf":2.0},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"c":{"df":3,"docs":{"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":3,"docs":{"270":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0}}}},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.0}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"269":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"234":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"262":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.8284271247461903},"266":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"235":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"263":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"242":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.8284271247461903},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"266":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"199":{"tf":1.0},"271":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"279":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"279":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"256":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"270":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"264":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"252":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"271":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"270":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"271":{"tf":2.6457513110645907},"272":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"282":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.0},"199":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"280":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":95,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.0},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":3.7416573867739413},"171":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":3.0},"179":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":3.3166247903554},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.3166247903554},"90":{"tf":2.8284271247461903},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"279":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"252":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"266":{"tf":2.0},"271":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"266":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"276":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"264":{"tf":1.0},"281":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"282":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"268":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"279":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.6457513110645907},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":71,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":2.0},"188":{"tf":2.0},"19":{"tf":1.7320508075688772},"199":{"tf":2.0},"20":{"tf":2.6457513110645907},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.4142135623730951},"253":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"166":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":13,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.0},"266":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"236":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"278":{"tf":2.6457513110645907},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":2.0},"67":{"tf":2.8284271247461903},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"278":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"261":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"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":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"264":{"tf":2.23606797749979},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"271":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"272":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"278":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":2.23606797749979},"279":{"tf":3.0},"280":{"tf":3.7416573867739413},"281":{"tf":3.605551275463989},"282":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"224":{"tf":1.0},"282":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"237":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.0},"228":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.0},"266":{"tf":3.7416573867739413},"272":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"279":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"236":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"43":{"tf":4.242640687119285},"44":{"tf":2.6457513110645907},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":32,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.7416573867739413},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"281":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"w":{"c":{"df":2,"docs":{"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.0}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"240":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"271":{"tf":1.4142135623730951},"281":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"272":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.242640687119285},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"256":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"258":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"270":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"264":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"229":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"276":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"266":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"266":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.0}}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"272":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"270":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":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":{"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.0},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"266":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"272":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":2.0},"276":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"282":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"237":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"270":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.0},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"227":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"247":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":22,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.4142135623730951},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"277":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.605551275463989},"272":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.4641016151377544},"256":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":3.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"272":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":31,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"280":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"270":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"270":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0}}}}},"df":1,"docs":{"271":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":39,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"280":{"tf":1.0}},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"254":{"tf":1.0}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"269":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"230":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.7320508075688772},"281":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":41,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.4142135623730951},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":36,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":2.6457513110645907},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":3.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"271":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"232":{"tf":1.0},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"233":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"271":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"260":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"242":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"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":35,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"271":{"tf":2.0},"276":{"tf":2.0},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"280":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"276":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.0}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"266":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.449489742783178},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"253":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":26,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"271":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"266":{"tf":5.0990195135927845},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.0},"19":{"tf":1.0},"253":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":1.7320508075688772},"255":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"279":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"234":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":2.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"281":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"271":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"264":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"281":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"r":{"d":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.23606797749979},"211":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":41,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"271":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"248":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"259":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"235":{"tf":1.0},"264":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"279":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"270":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.0},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"239":{"tf":1.0},"25":{"tf":2.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.4142135623730951},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"268":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"276":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":58,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"258":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"271":{"tf":3.3166247903554},"272":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"271":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.8284271247461903},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"264":{"tf":1.4142135623730951},"280":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"280":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"228":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"278":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"281":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.47213595499958},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":8,"docs":{"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.23606797749979},"166":{"tf":1.0},"182":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"278":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"237":{"tf":1.0}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":29,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"281":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":49,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":2.6457513110645907},"281":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"235":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.7416573867739413},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"50":{"tf":2.23606797749979}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"252":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"195":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"238":{"tf":1.0},"264":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"280":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"131":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"4":{"tf":2.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"281":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"262":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"258":{"tf":1.0},"26":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":7,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"270":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"281":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"240":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.0},"264":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"281":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"240":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":3.3166247903554},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":2.449489742783178},"276":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"281":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"241":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"242":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"243":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"236":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"2":{"df":1,"docs":{"266":{"tf":1.0}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"280":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"109":{"tf":2.0},"112":{"tf":2.449489742783178},"113":{"tf":3.3166247903554},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":3.4641016151377544},"276":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"270":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"270":{"tf":1.0}}},"df":1,"docs":{"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":52,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":3.3166247903554},"196":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":3.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.7320508075688772}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"281":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"270":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":4.242640687119285},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":21,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"247":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"breadcrumbs":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.7416573867739413},"272":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"272":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"271":{"tf":2.449489742783178}}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"2":{"df":1,"docs":{"272":{"tf":1.0}}},"3":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":3.4641016151377544},"196":{"tf":2.0},"266":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"271":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"271":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"69":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"266":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":9,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"266":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"266":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"271":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"235":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"264":{"tf":1.0},"266":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.23606797749979},"44":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":2.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"281":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"271":{"tf":1.0}},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"133":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":2.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.23606797749979},"281":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"266":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"249":{"tf":1.0},"257":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"268":{"tf":1.0},"281":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"258":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":12,"docs":{"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"261":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"279":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":2.0},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":3.4641016151377544},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"268":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"10":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":26,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":2.23606797749979},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":2.449489742783178}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":62,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.3166247903554},"66":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"262":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.358898943540674},"158":{"tf":2.449489742783178},"249":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":4.0},"272":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":2.0},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"4":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"260":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":2.0},"271":{"tf":7.211102550927978},"272":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"266":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"250":{"tf":1.4142135623730951}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":2.0},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"280":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"264":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"281":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.23606797749979},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"279":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.23606797749979},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":4.358898943540674},"272":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"264":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"280":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"266":{"tf":3.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"281":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"271":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":3.0},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":2.0},"219":{"tf":1.0},"223":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"271":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"271":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"122":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"270":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"281":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"277":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"253":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"251":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":2.23606797749979},"200":{"tf":2.0},"201":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":29,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"28":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"239":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"15":{"tf":1.0},"272":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"266":{"tf":4.69041575982343},"272":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"278":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.449489742783178},"273":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":71,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":3.1622776601683795},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"102":{"tf":3.0},"103":{"tf":3.7416573867739413},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.1622776601683795},"113":{"tf":4.123105625617661},"114":{"tf":3.3166247903554},"115":{"tf":2.8284271247461903},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":2.8284271247461903},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":2.0},"264":{"tf":4.123105625617661},"266":{"tf":3.1622776601683795},"267":{"tf":2.6457513110645907},"268":{"tf":1.4142135623730951},"269":{"tf":4.123105625617661},"270":{"tf":3.605551275463989},"271":{"tf":4.898979485566356},"272":{"tf":3.1622776601683795},"273":{"tf":2.8284271247461903},"276":{"tf":3.4641016151377544},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.8284271247461903},"281":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"280":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"278":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"281":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"282":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"a":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"276":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.4641016151377544},"118":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":2.0},"103":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"c":{"df":3,"docs":{"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":3,"docs":{"270":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0}}}},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"269":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"234":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"262":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"174":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":2.449489742783178},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"235":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"263":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"242":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":3.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"266":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.6457513110645907},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"199":{"tf":1.0},"271":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"279":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"279":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"256":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.449489742783178},"152":{"tf":1.0},"270":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"252":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"271":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"270":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"271":{"tf":2.6457513110645907},"272":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"282":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":48,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"280":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":113,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":3.872983346207417},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":3.4641016151377544},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.605551275463989},"90":{"tf":3.1622776601683795},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"279":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":61,"docs":{"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"252":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"266":{"tf":2.0},"271":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"266":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"276":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"264":{"tf":1.0},"281":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"282":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"268":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"279":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"176":{"tf":2.0},"18":{"tf":1.0},"188":{"tf":2.0},"19":{"tf":2.0},"199":{"tf":2.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":2.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.4142135623730951},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"166":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.4142135623730951},"266":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"236":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"278":{"tf":2.6457513110645907},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"278":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"261":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"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":74,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"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.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"264":{"tf":2.23606797749979},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"271":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"272":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"278":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"278":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":28,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"263":{"tf":1.0},"277":{"tf":2.23606797749979},"278":{"tf":2.449489742783178},"279":{"tf":3.1622776601683795},"280":{"tf":3.872983346207417},"281":{"tf":3.872983346207417},"282":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":3.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"224":{"tf":1.0},"282":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"237":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":2.449489742783178},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"228":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"266":{"tf":3.7416573867739413},"272":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"279":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"176":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"204":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":46,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"236":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":4.358898943540674},"44":{"tf":2.8284271247461903},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":35,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.872983346207417},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":3.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"281":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"w":{"c":{"df":2,"docs":{"87":{"tf":2.8284271247461903},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"240":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"271":{"tf":1.4142135623730951},"281":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"272":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.358898943540674},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"256":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"258":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"270":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"264":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"229":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"276":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"266":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"266":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.0}}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"272":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"270":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":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":{"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"266":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"272":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"155":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":2.0},"276":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"282":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"237":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":21,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":2.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"270":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"247":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":2.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":23,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.7320508075688772},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"277":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.605551275463989},"272":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.605551275463989},"256":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.1622776601683795},"36":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"272":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":36,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"281":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"280":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"270":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":56,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"270":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0}}}}},"df":1,"docs":{"271":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"280":{"tf":1.0}},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.4142135623730951},"281":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":2.0},"128":{"tf":2.23606797749979},"129":{"tf":2.449489742783178},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"201":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"269":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.7320508075688772},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"230":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.7320508075688772},"281":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":48,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.7320508075688772},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":3.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":3.3166247903554},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"271":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":2.0}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":4.123105625617661},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"233":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"271":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"260":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"242":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"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":42,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":2.0},"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.449489742783178},"271":{"tf":2.0},"276":{"tf":2.23606797749979},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":2.0},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"280":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"276":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.7320508075688772},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"266":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"43":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"212":{"tf":1.4142135623730951},"253":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"271":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"266":{"tf":5.0990195135927845},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":2.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"253":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"255":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"279":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"281":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"271":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"264":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"281":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"r":{"d":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"278":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":72,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"271":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":47,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"259":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"235":{"tf":1.0},"264":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":2.449489742783178},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"279":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"270":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"239":{"tf":1.0},"25":{"tf":2.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":25,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"268":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"276":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":63,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.0},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"151":{"tf":2.6457513110645907},"152":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"235":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"271":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"271":{"tf":3.3166247903554},"272":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"271":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":77,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.6457513110645907},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.4142135623730951},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.6457513110645907},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":3.1622776601683795},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"264":{"tf":1.4142135623730951},"280":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"280":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.1622776601683795},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":12,"docs":{"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"228":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":2.6457513110645907},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"278":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"281":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.58257569495584},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":9,"docs":{"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"278":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"237":{"tf":1.4142135623730951}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"281":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":49,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":2.0},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":2.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":2.6457513110645907},"281":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"235":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.872983346207417},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"252":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":2.0},"195":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"238":{"tf":1.0},"264":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.7320508075688772},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"280":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":35,"docs":{"131":{"tf":1.0},"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"281":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"279":{"tf":2.6457513110645907},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"262":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"258":{"tf":1.0},"26":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":42,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"270":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"281":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"282":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"264":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"281":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"240":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":3.3166247903554},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":2.6457513110645907},"276":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"281":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":13,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.872983346207417},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"241":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"270":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"242":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"236":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"2":{"df":1,"docs":{"266":{"tf":1.0}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"280":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":3.0},"156":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.6457513110645907},"113":{"tf":3.4641016151377544},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"125":{"tf":1.0},"126":{"tf":1.0},"244":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":3.4641016151377544},"276":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"270":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"270":{"tf":1.0}}},"df":1,"docs":{"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.449489742783178},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":3.605551275463989},"196":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":2.449489742783178},"52":{"tf":3.1622776601683795},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.8284271247461903},"86":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"98":{"tf":2.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"281":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"270":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":2.6457513110645907},"195":{"tf":4.47213595499958},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"201":{"tf":1.7320508075688772},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":21,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"title":{"root":{"1":{"1":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.0}}},"2":{"3":{".":{"0":{"5":{"df":2,"docs":{"185":{"tf":1.0},"188":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"9":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}},"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"66":{"tf":1.0}}}}},"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":5,"docs":{"131":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"x":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"6":{"4":{"df":2,"docs":{"115":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"268":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"a":{"df":3,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"268":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"/":{"c":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":1,"docs":{"250":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"141":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}},"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":{"48":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"c":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"118":{"tf":1.0}}}}},"df":2,"docs":{"102":{"tf":1.0},"119":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"216":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"x":{"df":4,"docs":{"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":1,"docs":{"273":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"218":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"df":30,"docs":{"0":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":2,"docs":{"220":{"tf":1.0},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"253":{"tf":1.0}}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":2,"docs":{"264":{"tf":1.0},"66":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"145":{"tf":1.0},"194":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"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":3,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"170":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"y":{"df":4,"docs":{"153":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"191":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"74":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"120":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"h":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"27":{"tf":1.0}}},"6":{"df":1,"docs":{"28":{"tf":1.0}}},"7":{"df":1,"docs":{"29":{"tf":1.0}}},"8":{"df":1,"docs":{"30":{"tf":1.0}}},"9":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}}},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":4,"docs":{"155":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"—":{"df":0,"docs":{},"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":{"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"146":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":3,"docs":{"229":{"tf":1.0},"279":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"161":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":1,"docs":{"231":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"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":{"121":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"232":{"tf":1.0}},"e":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"233":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":4,"docs":{"197":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0}}}}}},"r":{"a":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"205":{"tf":1.0},"248":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":11,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"248":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"260":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"70":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"270":{"tf":1.0},"73":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"236":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"141":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"128":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"130":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"277":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"c":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"151":{"tf":1.0},"28":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"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":2,"docs":{"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.0}}}}},"i":{"df":2,"docs":{"196":{"tf":1.0},"243":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":6,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"244":{"tf":1.0}}}}},"i":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":12,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"245":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":3,"docs":{"246":{"tf":1.0},"37":{"tf":1.0},"98":{"tf":1.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}},"8":{"6":{"df":3,"docs":{"117":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}}}}}},"lang":"English","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
+Object.assign(window.search, {"doc_urls":["index.html#about-ghaf","index.html#embedded-virtualization","index.html#ghaf-platform-applications","index.html#design-principles","index.html#build-system-and-supply-chain","features/features.html#features","features/features.html#status","features/features.html#reference-devices","features/features.html#release-builds-and-hardware-architecture-support","features/features.html#development","features/features.html#target-architecture","features/features.html#applications-and-vm-control","features/features.html#next-steps","architecture/architecture.html#architecture","architecture/architecture.html#in-this-chapter","architecture/variants.html#architectural-variants","architecture/adr.html#architecture-decision-records","architecture/adr/minimal-host.html#minimal-host","architecture/adr/minimal-host.html#status","architecture/adr/minimal-host.html#context","architecture/adr/minimal-host.html#requirements","architecture/adr/minimal-host.html#decision","architecture/adr/minimal-host.html#consequences","architecture/adr/minimal-host.html#defined-in-nix-mh01","architecture/adr/minimal-host.html#reduced-profile-mh02","architecture/adr/minimal-host.html#no-networking-mh03","architecture/adr/minimal-host.html#no-graphics-mh04","architecture/adr/minimal-host.html#no-getty-mh05","architecture/adr/minimal-host.html#no-nix-toolings-mh06","architecture/adr/minimal-host.html#minimal-defconfig-mh07","architecture/adr/minimal-host.html#update-via-adminvm-mh08","architecture/adr/minimal-host.html#read-only-filesystem-mh09","architecture/adr/netvm.html#netvmnetworking-virtual-machine","architecture/adr/netvm.html#status","architecture/adr/netvm.html#context","architecture/adr/netvm.html#decision","architecture/adr/netvm.html#consequences","architecture/adr/platform-bus-passthrough-support.html#rust-vmmbus-passthrough-support-for-rust-vmms","architecture/adr/platform-bus-passthrough-support.html#status","architecture/adr/platform-bus-passthrough-support.html#context","architecture/adr/platform-bus-passthrough-support.html#decision","architecture/hardening.html#hardening","architecture/hardening.html#kernel","architecture/hardening.html#kernel-hardening-process","architecture/hardening.html#host-kernel","architecture/secureboot.html#secure-boot","architecture/secureboot.html#enabling-secure-boot","architecture/secureboot.html#creating-secure-boot-keys","architecture/secureboot.html#current-implementation","architecture/secureboot.html#secure-boot-verification","architecture/stack.html#stack","architecture/stack.html#system-vms","architecture/stack.html#application-or-service-vm","architecture/stack.html#guest-oss","appendices/contributing_general.html#contribution-guidelines","ref_impl/reference_implementations.html#reference-implementations","ref_impl/reference_implementations.html#approach","ref_impl/reference_implementations.html#example","ref_impl/reference_implementations.html#in-this-chapter","ref_impl/development.html#development","ref_impl/build_and_run.html#build-and-run","ref_impl/build_and_run.html#prerequisites","ref_impl/build_and_run.html#running-ghaf-image-for-x86-vm-ghaf-host","ref_impl/build_and_run.html#running-ghaf-image-for-x86-computer","ref_impl/build_and_run.html#running-ghaf-image-for-lenovo-x1","ref_impl/build_and_run.html#ghaf-image-for-nvidia-jetson-orin-agx","ref_impl/build_and_run.html#building-ghaf-image-for-nxp-imx-8qm-mek","ref_impl/build_and_run.html#building-ghaf-image-for-microchip-icicle-kit","ref_impl/remote_build_setup.html#running-remote-build-on-nixos","ref_impl/remote_build_setup.html#1-configuring-ssh-keys","ref_impl/remote_build_setup.html#2-setting-up-configuration-files","ref_impl/remote_build_setup.html#troubleshooting","ref_impl/remote_build_setup.html#single-user-nix-installation-issues","ref_impl/remote_build_setup.html#vpn-setup-for-remote-access","ref_impl/remote_build_setup.html#private-key-on-local-machine-not-matching-public-key-on-remote-machine","ref_impl/installer.html#installer","ref_impl/installer.html#configuring-and-building-installer-for-ghaf","ref_impl/installer.html#adding-installer-modules","ref_impl/installer.html#built-in-installer-modules","ref_impl/installer.html#flushimage","ref_impl/cross_compilation.html#cross-compilation","ref_impl/cross_compilation.html#cross-compilation-for-microchip-icicle-kit-riscv64","ref_impl/cross_compilation.html#future-cross-compilation-support","ref_impl/cross_compilation.html#binfmt-emulated-build","ref_impl/creating_appvm.html#creating-application-vm","ref_impl/creating_appvm.html#adding-appvm-description","ref_impl/creating_appvm.html#adding-application-launcher-in-gui-vm","ref_impl/labwc.html#labwc-desktop-environment","ref_impl/labwc.html#window-border-coloring","ref_impl/ghaf-based-project.html#ghaf-as-library-templates","ref_impl/ghaf-based-project.html#using-ghaf-templates","ref_impl/ghaf-based-project.html#updating-ghaf-revision","ref_impl/ghaf-based-project.html#customizing-ghaf-modules","ref_impl/example_project.html#example-project","ref_impl/example_project.html#troubleshooting-for-lenovo-x1-laptop","ref_impl/modules_options.html","technologies/technologies.html#technologies","technologies/technologies.html#hardware-requirements-for-virtualization","technologies/technologies.html#virtual-machine-manager-vmm","technologies/technologies.html#in-this-chapter","technologies/compartment.html#compartmentalization","technologies/passthrough.html#devices-passthrough","technologies/vfio.html#binding-devices-to-vfio-driver-to-allow-passthrough","technologies/vfio.html#using-driverctl-package","technologies/nvidia_agx_pt_uart.html#nvidia-jetson-agx-orin-uart-passthrough","technologies/nvidia_agx_pt_uart.html#uart-connections","technologies/nvidia_agx_pt_uart.html#uarti-selected-for-passthrough","technologies/nvidia_agx_pt_uart.html#host-device-tree","technologies/nvidia_agx_pt_uart.html#guest-device-tree","technologies/nvidia_agx_pt_uart.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#nvidia-jetson-agx-orin-pcie-passthrough","technologies/nvidia_agx_pt_pcie.html#pcie-slots-in-nvidia-jetson-agx-orin","technologies/nvidia_agx_pt_pcie.html#enabling-pcie-devices-for-vfio","technologies/nvidia_agx_pt_pcie.html#binding-device-for-vfio","technologies/nvidia_agx_pt_pcie.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#arm64-pci-device-interrupts","technologies/nvidia_agx_pt_pcie.html#more-work-for-arm64","technologies/x86_pcie_crosvm.html#x86-pcie-device-passthrough-with-crosvm","technologies/x86_pcie_crosvm.html#enabling-pcie-devices-for-vfio-with-driverctl","technologies/x86_pcie_crosvm.html#reseting-driver-to-original-state-afterwards","technologies/nvidia_virtualization_bpmp.html#nvidia-jetson-agx-orin-boot-and-power-management-processor-virtualization","technologies/nvidia_virtualization_bpmp.html#architectural-overview","technologies/nvidia_virtualization_bpmp.html#use-cases","technologies/nvidia_virtualization_bpmp.html#using-bpmp-virtualization-options-on-nvidia-jetson-agx-orin","technologies/nvidia_virtualization_bpmp.html#testing","technologies/nvidia_virtualization_bpmp.html#host-testing","technologies/nvidia_virtualization_bpmp.html#guest-for-uarta-testing","technologies/nvidia_virtualization_bpmp.html#related-topics","technologies/hypervisor_options.html#ghaf-specific-microvm-hypervisor-options","technologies/hypervisor_options.html#options-definitions","technologies/hypervisor_options.html#generated-hypervisor-start-commands","technologies/hypervisor_options.html#adding-option-to-hypervisor-command-line","scs/ci-cd-system.html#continuous-integration-and-distribution","scs/ci-cd-system.html#general-process","scs/scs.html#supply-chain-security","scs/scs.html#in-this-chapter","scs/slsa-framework.html#slsa-framework","scs/slsa-framework.html#slsa-terminology","scs/slsa-framework.html#levels-of-assurance","scs/slsa-framework.html#requirements","scs/basics.html#basic-security-measures","scs/basics.html#source-code--version-control-security","scs/basics.html#commit-signing","scs/basics.html#branch-protection","scs/basics.html#software-signing","scs/basics.html#enabling-image-signing-on-hydra","scs/basics.html#shared-nix-store","scs/basics.html#data-encryption-in-transit","scs/sbom.html#software-bill-of-materials-sbom","scs/sbom.html#sbom-formats-and-specifications","scs/sbom.html#sbom-usage-in-ghaf","scs/sbom.html#sbom-tooling-in-ghaf","scs/sbom.html#references","scs/pki.html#public-key-infrastructure","scs/pki.html#private-certificate-authority-pca","scs/pki.html#hardware-security-module","scs/pki.html#hsm-variants-for-consideration","scs/pki.html#ca-hierarchy-options","scs/pki.html#proposed-ca-hierarchy","scs/ghaf-security-fix-automation.html#security-fix-automation","scs/ghaf-security-fix-automation.html#semi-automated-upstream-first-process","release_notes/release_notes.html#ghaf-release-notes","release_notes/release_notes.html#in-this-chapter","release_notes/ghaf-23.12.html#release-ghaf-2312","release_notes/ghaf-23.12.html#release-branch","release_notes/ghaf-23.12.html#supported-hardware","release_notes/ghaf-23.12.html#what-is-new-in-ghaf-2312","release_notes/ghaf-23.12.html#bug-fixes","release_notes/ghaf-23.12.html#known-issues-and-limitations","release_notes/ghaf-23.12.html#environment-requirements","release_notes/ghaf-23.12.html#installation-instructions","release_notes/ghaf-23.09.html#release-ghaf-2309","release_notes/ghaf-23.09.html#release-branch","release_notes/ghaf-23.09.html#supported-hardware","release_notes/ghaf-23.09.html#what-is-new-in-ghaf-2309","release_notes/ghaf-23.09.html#bug-fixes","release_notes/ghaf-23.09.html#known-issues-and-limitations","release_notes/ghaf-23.09.html#environment-requirements","release_notes/ghaf-23.09.html#installation-instructions","release_notes/ghaf-23.06.html#release-ghaf-2306","release_notes/ghaf-23.06.html#release-branch","release_notes/ghaf-23.06.html#supported-hardware","release_notes/ghaf-23.06.html#what-is-new-in-ghaf-2306","release_notes/ghaf-23.06.html#bug-fixes","release_notes/ghaf-23.06.html#known-issues-and-limitations","release_notes/ghaf-23.05.html#release-ghaf-2305","release_notes/ghaf-23.05.html#release-branch","release_notes/ghaf-23.05.html#supported-hardware","release_notes/ghaf-23.05.html#what-is-new-in-ghaf-2305","release_notes/ghaf-23.05.html#known-issues-and-limitations","scenarios/showcases.html#showcases","scenarios/showcases.html#secure-laptop","scenarios/showcases.html#in-this-chapter","scenarios/run_win_vm.html#running-windows-11-in-vm-on-ghaf","scenarios/run_win_vm.html#getting-windows-11-image","scenarios/run_win_vm.html#running-windows-11-in-vm","scenarios/run_win_vm.html#using-ui-to-launch-windows-11-vm","scenarios/run_win_vm.html#passing-additional-parameters-to-qemu","scenarios/run_cuttlefish.html#running-android-cuttlefish-virtual-device-on-ghaf","scenarios/run_cuttlefish.html#installing-cuttlefish","scenarios/run_cuttlefish.html#running-cuttlefish","scenarios/run_cuttlefish.html#connecting-to-cuttlefish-device","appendices/glossary.html#glossary","appendices/glossary.html#appropriate-use-of-articles-before-abbreviations","appendices/glossary.html#trivia","appendices/glossary.html#project-related","appendices/glossary.html#ghaf","appendices/glossary.html#cicd","appendices/glossary.html#ssrc","appendices/glossary.html#tii","appendices/glossary.html#core-concepts","appendices/glossary.html#adr","appendices/glossary.html#bpmp","appendices/glossary.html#bsp","appendices/glossary.html#dhcp","appendices/glossary.html#dma","appendices/glossary.html#emmc-e-mmc","appendices/glossary.html#eula","appendices/glossary.html#fw","appendices/glossary.html#gala","appendices/glossary.html#gui","appendices/glossary.html#ids","appendices/glossary.html#iommu","appendices/glossary.html#ip","appendices/glossary.html#isa","appendices/glossary.html#kvm","appendices/glossary.html#kvms","appendices/glossary.html#labws-labws","appendices/glossary.html#mmu","appendices/glossary.html#msi","appendices/glossary.html#nixos","appendices/glossary.html#oem","appendices/glossary.html#os","appendices/glossary.html#pci","appendices/glossary.html#pcie","appendices/glossary.html#qemu","appendices/glossary.html#sbsa","appendices/glossary.html#sku","appendices/glossary.html#soc","appendices/glossary.html#ssd","appendices/glossary.html#tcb","appendices/glossary.html#tls","appendices/glossary.html#uart","appendices/glossary.html#uefi","appendices/glossary.html#ui","appendices/glossary.html#vfio","appendices/glossary.html#vm","appendices/glossary.html#vmm","appendices/glossary.html#zta","appendices/glossary.html#scs-related","appendices/glossary.html#ca","appendices/glossary.html#cms","appendices/glossary.html#eddsa","appendices/glossary.html#gpg","appendices/glossary.html#hsm","appendices/glossary.html#openssl","appendices/glossary.html#pki","appendices/glossary.html#pynacl","appendices/glossary.html#ra","appendices/glossary.html#sbom","appendices/glossary.html#scs","appendices/glossary.html#secure-cryptoprocessor","appendices/glossary.html#software-artifact","appendices/glossary.html#slsa","research/research.html#research-notes","research/passthrough/ethernet.html#imx-8qm-ethernet-passthrough","research/passthrough/ethernet.html#host-kernel-configuration","research/passthrough/ethernet.html#host-device-tree-explained","research/passthrough/ethernet.html#other-notes-about-passthrough","research/passthrough/ethernet.html#changes-in-u-boot","research/passthrough/ethernet.html#running-platform-device-passthrough-in-qemu","research/passthrough/ethernet.html#guest-setup","research/passthrough/ethernet.html#adding-devices-to-guest","research/passthrough/ethernet.html#some-final-touches-for-guest-devices","research/passthrough/ethernet.html#compiling-the-device-tree-source-to-binary-form","research/passthrough/ethernet.html#compiling-for-guest","research/passthrough/ethernet.html#compiling-for-host","research/passthrough/ethernet.html#running-qemu-with-passthrough-platform-devices","research/installation.html#approaches-to-ghaf-system-installation","research/installation.html#ghaf-initial-approach","research/installation.html#nixos-approach","research/installation.html#modular-interactive","research/installation.html#declarative-non-interactive-installation","research/installation.html#discussion"],"index":{"documentStore":{"docInfo":{"0":{"body":119,"breadcrumbs":2,"title":1},"1":{"body":62,"breadcrumbs":3,"title":2},"10":{"body":129,"breadcrumbs":3,"title":2},"100":{"body":100,"breadcrumbs":3,"title":1},"101":{"body":77,"breadcrumbs":4,"title":2},"102":{"body":43,"breadcrumbs":12,"title":6},"103":{"body":123,"breadcrumbs":9,"title":3},"104":{"body":18,"breadcrumbs":14,"title":6},"105":{"body":211,"breadcrumbs":10,"title":2},"106":{"body":31,"breadcrumbs":11,"title":3},"107":{"body":87,"breadcrumbs":11,"title":3},"108":{"body":87,"breadcrumbs":11,"title":3},"109":{"body":117,"breadcrumbs":11,"title":3},"11":{"body":38,"breadcrumbs":4,"title":3},"110":{"body":22,"breadcrumbs":14,"title":6},"111":{"body":338,"breadcrumbs":14,"title":6},"112":{"body":114,"breadcrumbs":12,"title":4},"113":{"body":127,"breadcrumbs":11,"title":3},"114":{"body":59,"breadcrumbs":11,"title":3},"115":{"body":104,"breadcrumbs":12,"title":4},"116":{"body":179,"breadcrumbs":11,"title":3},"117":{"body":0,"breadcrumbs":12,"title":5},"118":{"body":127,"breadcrumbs":12,"title":5},"119":{"body":13,"breadcrumbs":12,"title":5},"12":{"body":8,"breadcrumbs":3,"title":2},"120":{"body":45,"breadcrumbs":15,"title":9},"121":{"body":59,"breadcrumbs":8,"title":2},"122":{"body":57,"breadcrumbs":8,"title":2},"123":{"body":42,"breadcrumbs":14,"title":8},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":35,"breadcrumbs":8,"title":2},"126":{"body":81,"breadcrumbs":9,"title":3},"127":{"body":15,"breadcrumbs":8,"title":2},"128":{"body":30,"breadcrumbs":8,"title":5},"129":{"body":43,"breadcrumbs":5,"title":2},"13":{"body":101,"breadcrumbs":2,"title":1},"130":{"body":161,"breadcrumbs":7,"title":4},"131":{"body":78,"breadcrumbs":8,"title":5},"132":{"body":38,"breadcrumbs":6,"title":3},"133":{"body":107,"breadcrumbs":5,"title":2},"134":{"body":121,"breadcrumbs":6,"title":3},"135":{"body":12,"breadcrumbs":4,"title":1},"136":{"body":24,"breadcrumbs":7,"title":2},"137":{"body":18,"breadcrumbs":7,"title":2},"138":{"body":154,"breadcrumbs":7,"title":2},"139":{"body":69,"breadcrumbs":6,"title":1},"14":{"body":14,"breadcrumbs":2,"title":1},"140":{"body":0,"breadcrumbs":9,"title":3},"141":{"body":16,"breadcrumbs":11,"title":5},"142":{"body":24,"breadcrumbs":8,"title":2},"143":{"body":34,"breadcrumbs":8,"title":2},"144":{"body":58,"breadcrumbs":8,"title":2},"145":{"body":43,"breadcrumbs":10,"title":4},"146":{"body":26,"breadcrumbs":9,"title":3},"147":{"body":25,"breadcrumbs":9,"title":3},"148":{"body":17,"breadcrumbs":10,"title":4},"149":{"body":76,"breadcrumbs":9,"title":3},"15":{"body":131,"breadcrumbs":5,"title":2},"150":{"body":48,"breadcrumbs":9,"title":3},"151":{"body":43,"breadcrumbs":9,"title":3},"152":{"body":18,"breadcrumbs":7,"title":1},"153":{"body":68,"breadcrumbs":9,"title":3},"154":{"body":45,"breadcrumbs":10,"title":4},"155":{"body":48,"breadcrumbs":9,"title":3},"156":{"body":148,"breadcrumbs":9,"title":3},"157":{"body":118,"breadcrumbs":9,"title":3},"158":{"body":29,"breadcrumbs":9,"title":3},"159":{"body":40,"breadcrumbs":9,"title":3},"16":{"body":47,"breadcrumbs":7,"title":3},"160":{"body":204,"breadcrumbs":11,"title":5},"161":{"body":19,"breadcrumbs":5,"title":3},"162":{"body":12,"breadcrumbs":3,"title":1},"163":{"body":0,"breadcrumbs":8,"title":3},"164":{"body":2,"breadcrumbs":7,"title":2},"165":{"body":25,"breadcrumbs":7,"title":2},"166":{"body":90,"breadcrumbs":8,"title":3},"167":{"body":40,"breadcrumbs":7,"title":2},"168":{"body":95,"breadcrumbs":8,"title":3},"169":{"body":4,"breadcrumbs":7,"title":2},"17":{"body":0,"breadcrumbs":8,"title":2},"170":{"body":80,"breadcrumbs":7,"title":2},"171":{"body":0,"breadcrumbs":8,"title":3},"172":{"body":2,"breadcrumbs":7,"title":2},"173":{"body":25,"breadcrumbs":7,"title":2},"174":{"body":61,"breadcrumbs":8,"title":3},"175":{"body":20,"breadcrumbs":7,"title":2},"176":{"body":116,"breadcrumbs":8,"title":3},"177":{"body":4,"breadcrumbs":7,"title":2},"178":{"body":47,"breadcrumbs":7,"title":2},"179":{"body":0,"breadcrumbs":8,"title":3},"18":{"body":1,"breadcrumbs":7,"title":1},"180":{"body":2,"breadcrumbs":7,"title":2},"181":{"body":16,"breadcrumbs":7,"title":2},"182":{"body":31,"breadcrumbs":8,"title":3},"183":{"body":9,"breadcrumbs":7,"title":2},"184":{"body":49,"breadcrumbs":8,"title":3},"185":{"body":0,"breadcrumbs":8,"title":3},"186":{"body":2,"breadcrumbs":7,"title":2},"187":{"body":16,"breadcrumbs":7,"title":2},"188":{"body":38,"breadcrumbs":8,"title":3},"189":{"body":55,"breadcrumbs":8,"title":3},"19":{"body":73,"breadcrumbs":7,"title":1},"190":{"body":22,"breadcrumbs":2,"title":1},"191":{"body":93,"breadcrumbs":3,"title":2},"192":{"body":7,"breadcrumbs":2,"title":1},"193":{"body":28,"breadcrumbs":10,"title":5},"194":{"body":83,"breadcrumbs":9,"title":4},"195":{"body":236,"breadcrumbs":9,"title":4},"196":{"body":58,"breadcrumbs":11,"title":6},"197":{"body":30,"breadcrumbs":9,"title":4},"198":{"body":51,"breadcrumbs":10,"title":6},"199":{"body":209,"breadcrumbs":6,"title":2},"2":{"body":42,"breadcrumbs":4,"title":3},"20":{"body":158,"breadcrumbs":7,"title":1},"200":{"body":29,"breadcrumbs":6,"title":2},"201":{"body":52,"breadcrumbs":7,"title":3},"202":{"body":118,"breadcrumbs":2,"title":1},"203":{"body":92,"breadcrumbs":6,"title":5},"204":{"body":20,"breadcrumbs":2,"title":1},"205":{"body":0,"breadcrumbs":3,"title":2},"206":{"body":10,"breadcrumbs":2,"title":1},"207":{"body":35,"breadcrumbs":2,"title":1},"208":{"body":22,"breadcrumbs":2,"title":1},"209":{"body":33,"breadcrumbs":2,"title":1},"21":{"body":41,"breadcrumbs":7,"title":1},"210":{"body":0,"breadcrumbs":3,"title":2},"211":{"body":32,"breadcrumbs":2,"title":1},"212":{"body":38,"breadcrumbs":2,"title":1},"213":{"body":10,"breadcrumbs":2,"title":1},"214":{"body":26,"breadcrumbs":2,"title":1},"215":{"body":21,"breadcrumbs":2,"title":1},"216":{"body":2,"breadcrumbs":4,"title":3},"217":{"body":4,"breadcrumbs":2,"title":1},"218":{"body":1,"breadcrumbs":2,"title":1},"219":{"body":37,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":7,"title":1},"220":{"body":3,"breadcrumbs":2,"title":1},"221":{"body":16,"breadcrumbs":2,"title":1},"222":{"body":4,"breadcrumbs":2,"title":1},"223":{"body":14,"breadcrumbs":2,"title":1},"224":{"body":13,"breadcrumbs":2,"title":1},"225":{"body":10,"breadcrumbs":2,"title":1},"226":{"body":10,"breadcrumbs":2,"title":1},"227":{"body":12,"breadcrumbs":3,"title":2},"228":{"body":3,"breadcrumbs":2,"title":1},"229":{"body":3,"breadcrumbs":2,"title":1},"23":{"body":37,"breadcrumbs":9,"title":3},"230":{"body":10,"breadcrumbs":2,"title":1},"231":{"body":3,"breadcrumbs":2,"title":1},"232":{"body":2,"breadcrumbs":2,"title":1},"233":{"body":3,"breadcrumbs":2,"title":1},"234":{"body":4,"breadcrumbs":2,"title":1},"235":{"body":9,"breadcrumbs":2,"title":1},"236":{"body":32,"breadcrumbs":2,"title":1},"237":{"body":10,"breadcrumbs":2,"title":1},"238":{"body":14,"breadcrumbs":2,"title":1},"239":{"body":3,"breadcrumbs":2,"title":1},"24":{"body":30,"breadcrumbs":9,"title":3},"240":{"body":23,"breadcrumbs":2,"title":1},"241":{"body":5,"breadcrumbs":2,"title":1},"242":{"body":7,"breadcrumbs":2,"title":1},"243":{"body":22,"breadcrumbs":2,"title":1},"244":{"body":2,"breadcrumbs":2,"title":1},"245":{"body":6,"breadcrumbs":2,"title":1},"246":{"body":2,"breadcrumbs":2,"title":1},"247":{"body":3,"breadcrumbs":2,"title":1},"248":{"body":7,"breadcrumbs":2,"title":1},"249":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":105,"breadcrumbs":8,"title":2},"250":{"body":2,"breadcrumbs":2,"title":1},"251":{"body":3,"breadcrumbs":2,"title":1},"252":{"body":5,"breadcrumbs":2,"title":1},"253":{"body":13,"breadcrumbs":2,"title":1},"254":{"body":10,"breadcrumbs":2,"title":1},"255":{"body":5,"breadcrumbs":2,"title":1},"256":{"body":6,"breadcrumbs":2,"title":1},"257":{"body":9,"breadcrumbs":2,"title":1},"258":{"body":2,"breadcrumbs":2,"title":1},"259":{"body":14,"breadcrumbs":2,"title":1},"26":{"body":26,"breadcrumbs":8,"title":2},"260":{"body":10,"breadcrumbs":2,"title":1},"261":{"body":6,"breadcrumbs":3,"title":2},"262":{"body":11,"breadcrumbs":3,"title":2},"263":{"body":23,"breadcrumbs":2,"title":1},"264":{"body":14,"breadcrumbs":4,"title":2},"265":{"body":168,"breadcrumbs":10,"title":4},"266":{"body":22,"breadcrumbs":9,"title":3},"267":{"body":373,"breadcrumbs":10,"title":4},"268":{"body":55,"breadcrumbs":8,"title":2},"269":{"body":56,"breadcrumbs":9,"title":3},"27":{"body":29,"breadcrumbs":8,"title":2},"270":{"body":114,"breadcrumbs":11,"title":5},"271":{"body":112,"breadcrumbs":8,"title":2},"272":{"body":665,"breadcrumbs":9,"title":3},"273":{"body":254,"breadcrumbs":10,"title":4},"274":{"body":35,"breadcrumbs":12,"title":6},"275":{"body":27,"breadcrumbs":8,"title":2},"276":{"body":27,"breadcrumbs":8,"title":2},"277":{"body":129,"breadcrumbs":11,"title":5},"278":{"body":20,"breadcrumbs":8,"title":4},"279":{"body":152,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":9,"title":3},"280":{"body":120,"breadcrumbs":6,"title":2},"281":{"body":141,"breadcrumbs":6,"title":2},"282":{"body":174,"breadcrumbs":8,"title":4},"283":{"body":46,"breadcrumbs":5,"title":1},"29":{"body":29,"breadcrumbs":9,"title":3},"3":{"body":127,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":10,"title":4},"31":{"body":12,"breadcrumbs":9,"title":3},"32":{"body":0,"breadcrumbs":9,"title":3},"33":{"body":10,"breadcrumbs":7,"title":1},"34":{"body":56,"breadcrumbs":7,"title":1},"35":{"body":171,"breadcrumbs":7,"title":1},"36":{"body":37,"breadcrumbs":7,"title":1},"37":{"body":0,"breadcrumbs":14,"title":6},"38":{"body":3,"breadcrumbs":9,"title":1},"39":{"body":89,"breadcrumbs":9,"title":1},"4":{"body":62,"breadcrumbs":5,"title":4},"40":{"body":93,"breadcrumbs":9,"title":1},"41":{"body":8,"breadcrumbs":3,"title":1},"42":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":148,"breadcrumbs":5,"title":3},"44":{"body":79,"breadcrumbs":4,"title":2},"45":{"body":18,"breadcrumbs":5,"title":2},"46":{"body":33,"breadcrumbs":6,"title":3},"47":{"body":40,"breadcrumbs":7,"title":4},"48":{"body":25,"breadcrumbs":5,"title":2},"49":{"body":67,"breadcrumbs":6,"title":3},"5":{"body":40,"breadcrumbs":2,"title":1},"50":{"body":78,"breadcrumbs":3,"title":1},"51":{"body":30,"breadcrumbs":4,"title":2},"52":{"body":51,"breadcrumbs":5,"title":3},"53":{"body":16,"breadcrumbs":4,"title":2},"54":{"body":27,"breadcrumbs":3,"title":2},"55":{"body":30,"breadcrumbs":4,"title":2},"56":{"body":92,"breadcrumbs":3,"title":1},"57":{"body":89,"breadcrumbs":3,"title":1},"58":{"body":16,"breadcrumbs":3,"title":1},"59":{"body":129,"breadcrumbs":4,"title":1},"6":{"body":15,"breadcrumbs":2,"title":1},"60":{"body":26,"breadcrumbs":7,"title":2},"61":{"body":117,"breadcrumbs":6,"title":1},"62":{"body":52,"breadcrumbs":12,"title":7},"63":{"body":34,"breadcrumbs":10,"title":5},"64":{"body":37,"breadcrumbs":10,"title":5},"65":{"body":286,"breadcrumbs":11,"title":6},"66":{"body":79,"breadcrumbs":12,"title":7},"67":{"body":129,"breadcrumbs":11,"title":6},"68":{"body":19,"breadcrumbs":11,"title":4},"69":{"body":173,"breadcrumbs":11,"title":4},"7":{"body":47,"breadcrumbs":3,"title":2},"70":{"body":248,"breadcrumbs":12,"title":5},"71":{"body":18,"breadcrumbs":8,"title":1},"72":{"body":64,"breadcrumbs":12,"title":5},"73":{"body":44,"breadcrumbs":11,"title":4},"74":{"body":33,"breadcrumbs":16,"title":9},"75":{"body":0,"breadcrumbs":5,"title":1},"76":{"body":87,"breadcrumbs":8,"title":4},"77":{"body":26,"breadcrumbs":7,"title":3},"78":{"body":13,"breadcrumbs":7,"title":3},"79":{"body":10,"breadcrumbs":5,"title":1},"8":{"body":98,"breadcrumbs":6,"title":5},"80":{"body":61,"breadcrumbs":7,"title":2},"81":{"body":24,"breadcrumbs":11,"title":6},"82":{"body":14,"breadcrumbs":9,"title":4},"83":{"body":54,"breadcrumbs":8,"title":3},"84":{"body":75,"breadcrumbs":9,"title":3},"85":{"body":118,"breadcrumbs":9,"title":3},"86":{"body":28,"breadcrumbs":11,"title":5},"87":{"body":44,"breadcrumbs":9,"title":3},"88":{"body":89,"breadcrumbs":9,"title":3},"89":{"body":98,"breadcrumbs":8,"title":3},"9":{"body":74,"breadcrumbs":2,"title":1},"90":{"body":93,"breadcrumbs":8,"title":3},"91":{"body":68,"breadcrumbs":8,"title":3},"92":{"body":54,"breadcrumbs":8,"title":3},"93":{"body":115,"breadcrumbs":9,"title":2},"94":{"body":182,"breadcrumbs":11,"title":4},"95":{"body":0,"breadcrumbs":7,"title":2},"96":{"body":73,"breadcrumbs":2,"title":1},"97":{"body":70,"breadcrumbs":4,"title":3},"98":{"body":45,"breadcrumbs":5,"title":4},"99":{"body":34,"breadcrumbs":2,"title":1}},"docs":{"0":{"body":"Ghaf Framework is an open-source project that provides information about our work and studies in the security technologies field in the context of embedded virtualization. The applied software research supports Secure Systems Research Center (SSRC) focus areas. Ghaf Framework can be used to build the Ghaf Platform that will provide an edge device software architecture with key features such as modularity and scalability through virtualization, support research and development of zero trust architecture (ZTA), and allow for low maintenance efforts while keeping the main code base stable and secure. The SSRC team focus is to research on enhancing ZTA to scale horizontally across edge HW platforms (phones, drones, laptops, communication modules) and vertically across SW platforms (Linux, Android, Browser, applications). The Ghaf Platform is a baseline software platform for edge devices, utilizing a virtualized architecture for research and product development aiming to achieve the following core objectives: apply the general security principles of zero trust within the software architecture, and act as an enabler for ZTAs within organizations. Ghaf Platform Infrastructure","breadcrumbs":"About Ghaf » About Ghaf","id":"0","title":"About Ghaf"},"1":{"body":"Virtualization is one of the core enablers to transform the traditionally monolithic software stack within edge devices into isolated components with minimal TCB and clearly defined functionality. The Ghaf Platform utilizes a collection of virtual machines (VMs) to define a system. Contrary to the traditional monolithic OS, this concept allows to define and run host services in isolated environments, which breaks up the monolithic structure and allows for a modular system definition that is customizable for a specific use case. To this end, various applications and guest OSs can be deployed while simultaneously utilizing the Platform's features.","breadcrumbs":"About Ghaf » Embedded Virtualization","id":"1","title":"Embedded Virtualization"},"10":{"body":"Feature Status Reference Device Details minimal host 🚧 all See Minimal Host and PR #140 . netvm ✅ Orin See netvm . Passthrough with Wifi works but requires SSID/password configuration idsvm ✅ Orin Defensive security VM placeholder PR open guivm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device, other devices have Wayland compositor running on the host. appvm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device: chromium, GALA and zathura VMs. Requires guivm in place adminvm ✅ All Not started Inter VM comms - IP-based 🚧 All -debug-targets have network bridges to access VMs from host Inter VM comms - shared memory 🚧 All Inter VM Wayland 🚧 All Currently it is waypipe over SSH, for test and demo purpose only SW update 🚧 All A/B update tooling being evaluated USB passthrough 🚧 Orin No reference implementation integrated yet PCI passthrough ✅ All Used for reference in netvm on Orin UART passthrough 🚧 Orin See NVIDIA Jetson AGX Orin: UART Passthrough . Not integrated to any VM. ARM platform bus devices passthrough 🚧 Orin NVIDIA BPMP virtualization being developed","breadcrumbs":"Features » Target Architecture","id":"10","title":"Target Architecture"},"100":{"body":"Compartmentalization is the technique of separating parts of a system to decrease attack surface and prevent malfunctions from cascading in the system. In Ghaf architecture, there is a separate VM for every vital function of the system. Current implementation supports GUI VM, Networking VM and a couple of Application VMs, such as the Chromium web browser and the Zathura document viewer. The GUI VM owns a computer's GPU and performs desktop environment and application windows rendering. Wayland protocol for applications in this case is proxified by waypipe over SSH. This approach is used temporarily before moving to more sophisticated solutions. A VM compartmentalization requires all necessary devices passthrough in place. More specifically, you need to know the PCI VID and PID of a device and also its number on the PCI bus. In the case of a USB device passthrough, it is enough to know the device's VID and PID. For more information on actual implementation, see Ghaf as Library and Creating Application VM .","breadcrumbs":"Technologies » Compartmentalization » Compartmentalization","id":"100","title":"Compartmentalization"},"101":{"body":"Devices passthrough to virtual machines (VM) allows us to isolate the device drivers and their memory access in one or several VMs. This reduces the Trusted Code Base (TCB) in the host, due to the passed-through device drivers can be removed completely from the host kernel. Whether the device platform is x86 or ARM, the passthrough device needs to be bound to the VFIO device driver by the host system before it can be passed through to the guest environment. For more information, see Binding Device to VFIO Driver . Our current supported passthrough devices implementations: NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm","breadcrumbs":"Technologies » Passthrough » Devices Passthrough","id":"101","title":"Devices Passthrough"},"102":{"body":"An example of binding a PCI device to the VFIO driver manually: export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id Similar approach also works for platform devices. The device path for platform devices is /sys/bus/platform/devices/$DEVICE/. export DEVICE=\"31d0000.serial\"\necho vfio-platform > /sys/bus/platform/devices/$DEVICE/driver_override\necho \"$DEVICE\" > /sys/bus/platform/drivers/vfio-platform/bind","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Binding Devices to VFIO Driver to Allow Passthrough","id":"102","title":"Binding Devices to VFIO Driver to Allow Passthrough"},"103":{"body":"driverctl is an open-source device driver control utility for Linux systems. With driverctl it is easier to set up VFIO or change the driver for a device: export DEVICE=\"0001:01:00.0\"\ndriverctl --nosave set-override ${DEVICE} vfio-pci or for platform bus device passthrough export DEVICE=\"31d0000.serial\"\ndriverctl --nosave --bus platform set-override ${DEVICE} vfio-platform It is important to note that by default driverctl stores the set driver overrides and reactivates the override after a device reboot. With VFIO this can cause issues since some hardware devices may be required while the device starts up. This behavior can be effected by using the --nosave option as in the example above so that the override is reset back to default at reboot. The driverctl tool also features a way to list devices based on their bus type with the list-devices command. # Default usage of the tool is for pci bus\ndriverctl list-devices # Using command line option --bus platform sets the usage for platform bus\ndriverctl --bus platform list-devices driverctl can also reset the default driver by using the unset-override command. export DEVICE=\"0001:01:00.0\"\ndriverctl unset-override ${DEVICE}","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Using driverctl Package","id":"103","title":"Using driverctl Package"},"104":{"body":"This document describes the UART passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to guide more complex devices passthrough implementations.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough","id":"104","title":"NVIDIA Jetson AGX Orin: UART Passthrough"},"105":{"body":"There are eight UART units in the System on Chip (SoC) and two Server Base System Architecture (SBSA) UART units: The SoC UART units are named with an alphabetical suffix: UARTA, UARTB, UARTC, UARTD, UARTE, UARTF, UARTG, UARTH (which may be referred to as UART1, UART2, UART3, UART4, UART5, UART6, UART7, and UART8). The SBRA UART units are named UARTI and UARTJ. These units are pin-muxed with the UARTE and UARTC respectively. The following table describes the UART units mapping and connections: Device tree def. CPU pin SoC pin Connected to uarta: serial@3100000 UART1 UART1 40 pin header 3v3 uartb: serial@3110000 UART2 UART5 M.2 key E (WiFi card) uartc: serial@c280000 UART3 UART3 USB Debug ttyACM0 uartd: serial@3130000 UART4 UART4 Camera connector uarte: serial@3140000 Not mapped uartf: serial@3150000 Not mapped uartg: not on dtb UART7 UART7 Optional, USB Debug ttyACM1 uarth: serial@3170000 Not mapped uarti: serial@31d0000 UART5 UART2 USB Debug ttyACM1 uartj: serial@c270000 Not mapped Notes: The first column shows how the UART units are defined in the UART device tree file tegra234-soc-uart.dtsi [1] . The second and third columns show the CPU and SoC pin connections. Note that for UART2 and UART5 these are swapped. The pin mapping configuration is described in the file tegra234-mb1-bct-pinmux-p3701-0000.dtsi [2] . This device tree file is automatically generated by the macro Excel file Jetson_AGX_Orin_Series_Pinmux_Config_Template_1.5.xlsm which is available at the official Jetson Download Center as the Jetson AGX Orin Series Pinmux . The last column describes where the UART units are connected to the exterior. Only two UART units are connected to the micro USB debug interface. The UART7 is not connected by default but it can be connected to the debug interface ttyACM1 by swapping the fuse resistors (see Debug MCU page 7 on P3737_A04_Concept_schematics.pdf [3] ).","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UART Connections","id":"105","title":"UART Connections"},"106":{"body":"The UARTI unit was selected to do the first \"Hello world\" passthrough implementation as it does not show any dependencies on its device tree: uarti: serial@31d0000 { compatible = \"arm,sbsa-uart\"; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; };","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UARTI Selected for Passthrough","id":"106","title":"UARTI Selected for Passthrough"},"107":{"body":"To prepare the UARTI on the host for the passthrough: Modify the UARTI node in the tegra234-soc-uart.dtsi device tree file [1] : compatible: put a dummy driver associated to this node so that the kernel will not bind any driver to this UART unit. iommus: add the iommus field with the test stream ID TEGRA_SID_NISO1_SMMU_TEST which by default is not used by any other device. uarti: serial@31d0000 { compatible = \"arm,dummy\"; iommus = <&smmu_niso0 TEGRA_SID_NISO1_SMMU_TEST>; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; }; Include the modifications, compile the kernel to update the output DTB, and then flash it to the internal eMMC device tree A and B partitions with the following command: dd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p3\ndd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p6","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Host Device Tree","id":"107","title":"Host Device Tree"},"108":{"body":"The guest device tree is based on the device tree extracted from QEMU VM. To get the base QEMU device tree, run the following command: qemu-system-aarch64 -machine virt,accel=kvm,dumpdtb=virt.dtb -cpu host Add the passthrough devices inside the platform node to this device tree: platform@c000000 { interrupt-parent = <0x8001>; ranges = <0xc000000 0x00 0xc000000 0x2000000>; #address-cells = <0x01>; #size-cells = <0x01>; compatible = \"qemu,platform\\0simple-bus\"; uarti: serial@c000000 { compatible = \"arm,sbsa-uart\"; current-speed = <0x1c200>; interrupts = <0x00 0x70 0x04>; reg = <0x0c000000 0x10000>; status = \"okay\"; }; }; In this example, the uarti node was added to the platform node. For this node the interrupt number was replaced to 0x70 and reg address to the one that was obtained from the QEMU monitor command: info mtree -f .","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Guest Device Tree","id":"108","title":"Guest Device Tree"},"109":{"body":"To start the guest VM: Bind the UARTI to the VFIO driver: echo vfio-platform > /sys/bus/platform/devices/31d0000.serial/driver_override\necho 31d0000.serial > /sys/bus/platform/drivers/vfio-platform/bind The VFIO gives the user-level an access to the devices, in this case, QEMU. Connect the NVIDIA Jetson AGX Orin Debug USB to your PC and open the serial port ttyACM1 at 115200 bps. You can use picocom with the next command: picocom -b 115200 /dev/ttyACM1 Run the guest VM with the following QEMU command: qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-platform,host=31d0000.serial\\ -dtb uart.dtb \\ -append \"rootwait root=/dev/vda1 console=ttyAMA0\" When the guest VM is launched you can see the VM Linux command line in the opened ttyACM1 terminal. kernel_src/hardware/nvidia/soc/t23x/kernel-dts/tegra234-soc/tegra234-soc-uart.dtsi bootloader/t186ref/BCT/tegra234-mb1-bct-pinmux-p3701-0000.dtsi available in the BSP sources on: https://developer.nvidia.com/embedded/jetson-linux-r3521 Jetson_AGX_Orin_DevKit_Carrier_Board_Design_Files_A04_20221003/P3737_A04_Concept_schematics.pdf available in https://developer.nvidia.com/jetson-agx-orin-developer-kit-carrier-board-design-files-a04","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Starting Guest VM","id":"109","title":"Starting Guest VM"},"11":{"body":"Feature Status Reference Device Details Wayland-compositor 🚧 Orin, x86 Implemented for Lenovo X1 Chromium 🚧 Orin, x86 Implemented for Lenovo X1 Element 🚧 Orin, x86 On host Cloud Android (CVD) client application (GALA) 🚧 Orin, x86 Implemented for Lenovo X1 Virtualization control 🚧 All See vmd design .","breadcrumbs":"Features » Applications and VM Control","id":"11","title":"Applications and VM Control"},"110":{"body":"This document describes the PCIe passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to give an overview of passing through different PCIe devices and the limitations of PCIe in the board.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » NVIDIA Jetson AGX Orin: PCIe passthrough","id":"110","title":"NVIDIA Jetson AGX Orin: PCIe passthrough"},"111":{"body":"There are two (or actually three) PCIe slots in the Jetson AGX Orin board: One of the connectors is a full-size PCIe 8x slot located under a black plastic cover above the micro USB serial debug port on the side of the board. The other slot is a smaller M.2 slot that is located at the bottom of the board. By default, the slot is in use of the included Wi-Fi and Bluetooth module. The third slot is actually an NVMe slot which can be used to add an NVMe SSD to the board. For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. When using one of the slots: First and foremost, always turn off and disconnect any power sources from the board and its peripherals when connecting or disconnecting devices to any of the PCIe buses connect. When adding or removing devices to the board, there is always a risk of setting off an electrical discharge in one of the components which may damage the connected device or the board itself. Full-Size PCIe Slot The full-size PCIe connector is under the black plastic cover on one of the sides of the device. The cover is held in place with a fairly strong magnet. There is a small connector ribbon and a few delicate wires going from the board internals to a Wi-Fi antenna on the cover. TIP: Make sure to remove the cover carefully for not ripping the whole cover off along with the antenna cables. The PCIe slot is simular to one inside a desktop computer. One key difference: the Jetson AGX Orin board has limited 12V power output capabilities and can only output a maximum of 40W power to its PCIe slot. Regular desktop PCIe slot can output 75W at 12V so some more power-hungry PCIe cards [1] may not work with the Jetson AGX Orin board. There may also be a risk of damaging the board if a card tries to pull too much power from the PCIe socket. TIP: We recommend to check carefully the power requirements of a device before turning the device on. A good rule of thumb might be if the device has a cooler to actively cool it down then some care should be taken before starting to use the card. Some trials have been done with GPU devices that use at maximum 30-34W power. The devices seem to work well in Jetson AGX Orin, but it is difficult to say how much power the card actually pulls from the slot at any given time. No real performance or stress tests have been done but under usual GUI and simple 3d application usage the cards (NVIDIA Quadro P1000 and NVIDIA Quadro T600) seem to work fine. PCIe M.2 Slot The PCIe M.2 slot with key type A+E is at the bottom of the board. By default, this slot is in use of the internal Wi-Fi and Bluetooth card. There are different types of M.2 slots all of which are not compatible with one another. The slot in Jetson AGX Orin is type A+E, and it supports PCIe 2x and USB transport buses. PCIe M.2 NVMe for SSD The third slot is M.2 NVMe 2280 (22 mm width and 80 mm length) and can be used for NVMe SSD. Passing through this interface has not been tested as the SSD is in most cases used by the host.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » PCIe Slots in NVIDIA Jetson AGX Orin","id":"111","title":"PCIe Slots in NVIDIA Jetson AGX Orin"},"112":{"body":"As in the UART Passthrough , the default device tree requires some modifications. With the default configuration, the PCI devices are set to the same VFIO group as the PCI bus itself. The trouble here is that the PCI bus is a platform bus device which is a bit tricky to pass through to the guest. It is possible to pass through only the individual PCI devices and not the whole bus. To pass through individual PCI devices one by one, set the devices in their individual VFIO groups or remove the PCI bus from the same VFIO group: /* * Modify the 'pcie_c1_rp' pci-e bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the m2 pci device alone in the group. * This change is for the m2 pci-e \"wifi\" slot. */\n&pcie_c1_rp { /delete-property/ iommus;\n}; /* * Modify the 'pci_c5_rp' pci bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the pci device alone in the group. * This change is for the full size pci-e slot. */\n&pcie_c5_rp { /delete-property/ iommus;\n};","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Enabling PCIe Devices for VFIO","id":"112","title":"Enabling PCIe Devices for VFIO"},"113":{"body":"To set up the device for VFIO, unload the device driver and then replac it with the vfio-pci driver. The example below can be used for a device in the PCI bus 0001. The device 0001:01:00.0 in the first bus is the Jetson AGX Orin board with the M.2 Wi-Fi card. The full size PCI bus id is 0005. It is possible that a single PCI card contains multiple devices. In that case, all the devices need to be passed through together as they are in the same VFIO group. Usually the graphics card also contains some sound output device as a separate device. export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id In case of success, this device is bound to VFIO. The VFIO nodes are usually owned by the root and in some cases may be group accessible by the VFIO group. To use the VFIO devices, the user who starts QEMU needs access to the VFIO device node: # List of vfio device nodes\nls /dev/vfio/ # List of devices within each iommu group\nls /sys/kernel/iommu_groups//devices/ You can also check the kernel logs to know which device belongs to which VFIO IOMMU group.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Binding Device for VFIO","id":"113","title":"Binding Device for VFIO"},"114":{"body":"After binding a device to VFIO, you can access the device in a VM. To do so, use a command line argument (as in the example) for the PCI device to pass through to QEMU. It does not matter which VFIO node ID was assigned to the device earlier, as long as all the devices with the same VFIO node are passed through, and none of the devices in the same group is left behind. The QEMU command line argument for passthrough uses the PCIe device ID as identifier for the devices. Each device which is passed through needs its own QEMU -device argument as below: -device vfio-pci,host=\"0001:01:00.0\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Starting Guest VM","id":"114","title":"Starting Guest VM"},"115":{"body":"Modern PCI devices use the Message Signaled Interrupts (MSI) method to limit the need for physical hardware interrupt pins. As passing through PCI or any other devices is fairly new to QEMU, it seems MSI in ARM64 is not supported by QEMU [2] . To get interrupts to work in the guest, we need to signal the kernel to disable MSI for our passthrough device. There are two ways of doing it: To modify the host device tree by disabling MSI completely from the whole PCI bus. To disable MSI only from the guest by using the pci=nomsi kernel argument with QEMU. Disabling MSI is not required for the x86 QEMU guest as it has MSI support. The command below is provided only as a test example for passing through a PCI device for AArch64 [3] : qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-pci,host=0001:01:00.0\\ -append \"rootwait root=/dev/vda1 console=ttyAMA0 pci=nomsi\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » ARM64 PCI Device Interrupts","id":"115","title":"ARM64 PCI Device Interrupts"},"116":{"body":"The information above is enough for x86 and also for ARM64 processor architecture when using some simple or a bit older PCIe devices. A bit more complex PCIe device which has a larger internal RAM pool needs some modifications with QEMU sources. The problem with passing through such devices is that the memory address range reserved for PCIe devices is not large enough to map the internal memory of the PCI device. Some graphics cards have several gigabytes of internal RAM which needs to be accessible for the VM guest. You can extend the VIRT_PCIE_ECAM memory address range in the QEMU source code to allow mapping the whole PCIe device memory range. In most cases a few gigabytes is sufficient: diff --git a/hw/arm/virt.c b/hw/arm/virt.c\nindex ac626b3bef..d6fb597aee 100644\n--- a/hw/arm/virt.c\n+++ b/hw/arm/virt.c\n@@ -161,9 +161,10 @@ static const MemMapEntry base_memmap[] = { [VIRT_SECURE_MEM] = { 0x0e000000, 0x01000000 }, [VIRT_PCIE_MMIO] = { 0x10000000, 0x2eff0000 }, [VIRT_PCIE_PIO] = { 0x3eff0000, 0x00010000 },\n- [VIRT_PCIE_ECAM] = { 0x3f000000, 0x01000000 },\n+ /* ..Reserved 11Gb range for pcie = 11*1024*1024*1024b */\n+ [VIRT_PCIE_ECAM] = { 0x40000000, 0x2C0000000 }, /* Actual RAM size depends on initial RAM and device memory settings */\n- [VIRT_MEM] = { GiB, LEGACY_RAMLIMIT_BYTES },\n+ [VIRT_MEM] = { 0x300000000, LEGACY_RAMLIMIT_BYTES }, }; After these changes, compile QEMU and install it on the host system. An example of a power-hungry card is a graphics accelerator card. Our approach of using ARM as a VM host with passthroughs fairly new so it is hard to search for help or references online, but this bug qemu-system-aarch64 error seems to be close enough. The main hint of MSI not being fully supported yet by QEMU on ARM64 comes from the case when the device starts working only with MSI disabled from the guest kernel argument. It may require some changes for real usage.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » More Work for ARM64","id":"116","title":"More Work for ARM64"},"117":{"body":"","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » x86 PCIe Device Passthrough with crosvm","id":"117","title":"x86 PCIe Device Passthrough with crosvm"},"118":{"body":"As with other passthroughs, first, we need to set the target device to use VFIO driver. This can be done manually or by using the driverctl tool as below. Running driverctl requires root permissions. export BUS=\"0000:01:00.0\"\ndriverctl --nosave set-override ${BUS} vfio-pci Let's consider the example of starting crosvm. In some cases, crosvm may need privileged permissions to work properly. This applies specially for passthrough hardware devices as vfio devices are generally owned by the root user or the vfio group. For simplicity, it may be easier to run crosvm as the root user but it is be possible to set up correct permissions so that running as root is not needed. Crosvm expects the device's system path as its --vfio argument. The device identifier is different when comparing how passthrough devices are refrenced in QEMU. Using the guest-address option is not strictly required by the source documentation but it gives a bit more control for handling the passthrough device on the guest side. export BUS=\"0000:01:00.0\"\nexport GUESTBUS=\"00:08.0\"\n./target/debug/crosvm run \\ --mem=8192 \\ --block ./ubuntu-22.10.img \\ -i /boot/initrd.img-5.19.0-31-generic /boot/vmlinuz-5.19.0-31-generic \\ -p \"root=/dev/vda2 loglevel=8 earlycon earlyprintk debug\" \\ --vfio /sys/bus/pci/devices/${BUS},guest-address=${GUESTBUS},iommu=viommu","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Enabling PCIe Devices for VFIO with driverctl","id":"118","title":"Enabling PCIe Devices for VFIO with driverctl"},"119":{"body":"The driverctl tool can reset the original device driver afterward: export BUS=\"0000:01:00.0\"\ndriverctl unset-override ${BUS}","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Reseting Driver to Original State Afterwards","id":"119","title":"Reseting Driver to Original State Afterwards"},"12":{"body":"See discussion for the outline of next steps Outline of next phases","breadcrumbs":"Features » Next Steps","id":"12","title":"Next Steps"},"120":{"body":"Boot and Power Management Processor (BPMP) is the NVIDIA processor, which is designed for booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. The BPMP virtualization on the NVIDIA Jetson AGX Orin involves enabling VMs to access specific BPMP resources. This capability is crucial for passing through platform devices where control over resets and clocks configurations is required.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization","id":"120","title":"NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization"},"121":{"body":"Resource Access : The BPMP virtualization allows VMs to access and manage resources such as device clocks and resets. Foundation for Device Virtualization : This setup lays the groundwork for future virtualization of more complex devices like GPUs. Module Introduction : A new virtualization module is introduced, divided into common and host modules with a plan to add a guest module for NixOS-based guests. Device Tree Configurations : Modifications are made with patching to support virtualization features. Compatibility : The current implementation supports a Ghaf host with an Ubuntu guest.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Architectural Overview","id":"121","title":"Architectural Overview"},"122":{"body":"The current implementation includes a host configuration for the UARTA passthrough as a test case demonstrating the practical application of the BPMP virtualization. At the same time, the current implementation still requires manually built Ubuntu guest. Work continues to integrate microvm.nix declared guest that supports NVIDIA BPMP virtualization with the UARTA passthrough demo. This work is generally important for future NVIDIA Jetson platform bus GPU passthrough. With this feature it is possible to virtualize the NVIDIA-Jetson-integrated GPU connected to the platform bus.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Use Cases","id":"122","title":"Use Cases"},"123":{"body":"Enable NVIDIA BPMP virtualization on a Ghaf host for an NVIDIA Jetson-target using the following configuration options: hardware.nvidia = { virtualization.enable = true; passthroughs.uarta.enable = true;\n}; IMPORTANT: These options are integrated to NVIDIA Jetson Orin targets but disabled by default until the implementation is finished. Build the target and boot the image. You can write the image to an SSD for testing with a recent NVIDIA UEFI FW.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin","id":"123","title":"Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin"},"124":{"body":"","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Testing","id":"124","title":"Testing"},"125":{"body":"Check the bpmp-host device: [ghaf@ghaf-host:~]$ ls /dev | grep bpmp-host\nbpmp-host Check that vfio-platform binding is successful: ghaf@ghaf-host:~]$ ls -l /sys/bus/platform/drivers/vfio-platform/3100000.serial\nlrwxrwxrwx 1 root root 0 Dec 8 08:26 /sys/bus/platform/drivers/vfio-platform/3100000.serial -> ../../../../devices/platform/3100000.serial","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Host Testing","id":"125","title":"Host Testing"},"126":{"body":"UARTA is an UART unit with a port A connection. For more information, see UART Connections . Build a guest kernel according to UARTA passthrough instructions [1] and use the following script to start the VM: TIP: IMG is the kernel image and FS the rootfs. IMG=$1\nFS=$2 qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1G \\ -no-reboot \\ -kernel $IMG \\ -drive file=$FS,if=virtio,format=qcow2 \\ -net user,hostfwd=tcp::2222-:22 -net nic \\ -device vfio-platform,host=3100000.serial \\ -dtb virt.dtb \\ -append \"rootwait root=/dev/vda console=ttyAMA0\" With UARTA connected start Minicom on the working machine: minicom -b 9600 -D /dev/ttyUSB0 Test UARTA by echoing a string to the correct tty in the VM: echo 123 > /dev/ttyTHS0","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Guest for UARTA Testing","id":"126","title":"Guest for UARTA Testing"},"127":{"body":"NVIDIA Jetson AGX Orin: UART Passthrough [1] That documentation is in the bpmp-virt side repository, as that approach does not use microvm.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Related Topics","id":"127","title":"Related Topics"},"128":{"body":"microvm is the component defining a VM's launch services generated for systemd. It inputs a set of options mapped to the hypervisor command line call. Nevertheless, it may happen that some hypervisor options are not supported by microvm. For example, adding specific devices. This document considers such cases.","breadcrumbs":"Technologies » Hypervisor Options » Ghaf-Specific microvm Hypervisor Options","id":"128","title":"Ghaf-Specific microvm Hypervisor Options"},"129":{"body":"A VM is defined under Ghaf’s subdirectory microvmConfigurations/VM_NAME/default.nix, for example: modules/virtualization/microvm/netvm.nix\nhttps://github.com/tiiuae/ghaf/blob/main/modules/virtualization/microvm/netvm.nix This file contains hypervisor’s options for running the VM. For each hypervisor there is a bunch of microvm’s defined options: https://astro.github.io/microvm.nix/options.html The way they are processed can be found in corresponding .nix files (runners) in the astro/microvm.nix repository: crosvm.nix qemu.nix The formula for setting hypervisor option is microvm.option = value;. For example: microvm.mem = 512;\nmicrovm.vcpu = 2;","breadcrumbs":"Technologies » Hypervisor Options » Options Definitions","id":"129","title":"Options Definitions"},"13":{"body":"The main architectural concept of the Ghaf Platform is to break up the traditional monolithic structure to modularized components, virtual machines (VM). These VMs on hardened host OS implement the Ghaf edge virtualization platform. Embedded virtualization builds on cloud technologies in the development of end-to-end security. With hardware support for virtualization, we provide a hardened system of a small trusted computing base (TCB)—thin host—that enables isolation of use cases and their resources. Use cases are protected in guest virtual machines (VMs). Embedded targets are small devices (personal or headless) instead of high-performance cloud servers. Our scope is illustrated in the following diagram. For more information, see stack . Scope! If you are interested in why we do something this way instead of that way, see Architecture Decision Records . The Ghaf Platform components are used in reference configurations to build images for reference devices. For more information, see Reference Implementations .","breadcrumbs":"Architecture » Architecture","id":"13","title":"Architecture"},"130":{"body":"As a result of building the Ghaf tree, command lines for starting the VMs are generated. They reflect all parameters specified above—both those specified explicitly and defaults. They are located under the Ghaf’s /var/lib/microvms/ directory. ls /var/lib/microvms/memsharevm-vm-debug/current/bin microvm-balloon\nmicrovm-console\nmicrovm-run\nmicrovm-shutdown The command which starts the hypervisor is the microvm-run bash script. Here is a sample generated: #! /nix/store/96ky1zdkpq871h2dlk198fz0zvklr1dr-bash-5.1-p16/bin/bash -e\nexec '/nix/store/zsf59dn5sak8pbq4l3g5kqp7adyv3fph-qemu-host-cpu-only-7.1.0/bin/qemu-system-x86_64' '-\nname' 'memshare' '-M' 'microvm,accel=kvm:tcg,x-option-roms=off,isa-serial=off,pit=off,pic=off,rtc=off,\nmem-merge=on' '-m' '2512' '-cpu' 'host' '-smp' '17' '-machine' 'virt,accel=kvm' '-nodefaults' '-no-\nuser-config' '-nographic' '-no-reboot' '-serial' 'null' '-device' 'virtio-serial-device' '-chardev'\n'pty,id=con0' '-device' 'virtconsole,chardev=con0' '-chardev' 'stdio,mux=on,id=con1,signal=off' '-\ndevice' 'virtconsole,chardev=con1' '-device' 'virtio-rng-device' '-drive' 'id=root,format=raw,\nmedia=cdrom,file=/nix/store/xnnqb3sb1l4kbx7s0ijazph5r0c0xhx5-rootfs.squashfs,if=none,aio=io_uring' '-\ndevice' 'virtio-blk-device,drive=root' '-kernel' '/nix/store/ds5cmyby0p4ikw91afmrzihkz351kls7-linux-\n6.2/bzImage' '-append' 'console=hvc1 console=hvc0 reboot=t panic=-1 root=/dev/vda ro init=/init\ndevtmpfs.mount=0 stage2init=/nix/store/0mbhpna8hplbsaz1il3n99f0zincr4vs-nixos-system-memshare-\n22.11.20230310.824f886/init boot.panic_on_fail loglevel=4 regInfo=/nix/store\n/j8id92qsd58qjnzq4xz6v5l38rlpq6is-closure-info/registration' '-sandbox' 'on' '-qmp' 'unix:memshare.\nsock,server,nowait' '-device' 'virtio-balloon' '--option 1 --option 2' for the input parameters: microvm.hypervisor = \"qemu\"; Note that microvm sets several others. microvm.mem = 2000;\nmicrovm.balloonMem = 512;\nmicrovm.vcpu = 17;\nmicrovm.qemu.extraArgs = [ \"--option 1 --option 2\" ];","breadcrumbs":"Technologies » Hypervisor Options » Generated Hypervisor Start Commands","id":"130","title":"Generated Hypervisor Start Commands"},"131":{"body":"microvm may not supply parameters for all possible options as adding specific devices. Processing of all microvm configuration options is done in the mentioned above hypervisor’s runner .nix file. The runners support the extraArgs parameter. It allows setting any option in QEMU command line invocation. Its value is a list of strings. In this example the following extraArgs definition: microvm.qemu.extraArgs = [\n\"-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img\"\n\"-device virtio-pmem-pci,memdev=mem1,id=nv1\"\n]; results in the generated command line parameters: '-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img' '-device v\nirtio-pmem-pci,memdev=mem1,id=nv1' Support for the crosvm’s extraArgs parameter was added on April 7, 2023. Make sure to verify that your flakes.lock file refers to the proper version.","breadcrumbs":"Technologies » Hypervisor Options » Adding Option to Hypervisor Command Line","id":"131","title":"Adding Option to Hypervisor Command Line"},"132":{"body":"Ghaf Framework uses a CI/CD (Continuous Integration and Continuous Delivery) approach that aims to automate the process of building, testing, and deploying software. Our goal is to have the ability to deploy code quickly and safely: once a build is deployed, the next build undergoes testing, while the latest build is being coded. Currently, Continuous Deployment is not set up.","breadcrumbs":"Continuous Integration and Distribution » Continuous Integration and Distribution","id":"132","title":"Continuous Integration and Distribution"},"133":{"body":"CI/CD Architecture The software delivery pipeline consists of several stages: Contributors make changes in the code and create a pull/merge request to merge changes from one personal fork or branch into the upstream repository/branch. Builder Controller checks source code repositories for changes and fetches them. Builder Controller arranges builds on Remote Builders to make disk images and other release artifacts. After the building is done, Remote Builder sends disk images to Builder Controller to create provenance files and sign disk images and provenance files. On build failure, Builder Controller sends failure notifications to Message Service. Builder Controller uploads all build artifacts to Binary Cache and disk images to Web Server. Test Automation fetches disk images from Binary Cache and runs the hardware test on them. Test Automation uploads test reports to Web Server. Users can download images from Web Server: release images https://vedenemo.dev/files/releases/ images for testing https://vedenemo.dev/files/build_reports/ .","breadcrumbs":"Continuous Integration and Distribution » General Process","id":"133","title":"General Process"},"134":{"body":"To be aware of what is exactly in our software supply chain, it is reviewed for security issues and known vulnerabilities. Supply Chain Attacks Diagram We implement a supply chain security (SCS) — process of securing the machinery of the development, building, and release environment. That means that every component that a software artifact might be touching on its way from the developer to the consumer will be secured. The software artifact should be encrypted on each possible transition phase and its integrity should be verified at each destination. Each build should be accompanied by means of software bill of materials (SBOM) , identifying all the components that the software package consists of. SBOM containing reference to each dependency, its source and version together with provenance, containing build information are collected at the build time, signed, and used for vulnerability analysis during the next steps. The software artifact, SBOM, and provenance are signed by the build machinery at the build time, and the signature is verifiable at every destination of the package. The certificates that are used for signing and verification are provided by the public key infrastructure (PKI) system and are signed by the same root certificate authority (CA) . That allows you to confirm the author of the signature (build machinery) and guarantees that the package has not been tampered with since the build time.","breadcrumbs":"Supply Chain Security » Supply Chain Security","id":"134","title":"Supply Chain Security"},"135":{"body":"SLSA Framework Basic Security Measures SBOM Public Key Infrastructure Security Fix Automation","breadcrumbs":"Supply Chain Security » In This Chapter","id":"135","title":"In This Chapter"},"136":{"body":"Supply chain Levels for Software Artifacts (SLSA) is a security framework for tampering prevention, integrity improvement, and securing packages and infrastructure of a project. For more information about the SLSA framework, see the offical website https://slsa.dev .","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Framework","id":"136","title":"SLSA Framework"},"137":{"body":"Immutable reference: An identifier, guaranteed to always point to the same, immutable artifact. Provenance: Metadata about how an artifact was produced. Revision: An immutable, coherent state of a source.","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Terminology","id":"137","title":"SLSA Terminology"},"138":{"body":"One of the requirements for the solution is to reach SLSA Level 4 and even go beyond that. This requires a lot of process changes as well as technical work. The SLSA model consists of 4 levels, offering an incremental level of anti-tampering protection. Levels 1-3 represent milestones with certain integrity guarantees, whereas level 4 is an ideal end state. Level 0 means no SLSA compliance and no guarantees are given. Level 1 demands a fully scripted / automated build process and provenance generation. It offers basic confidence in the origin of the software but doesn’t provide any tamper resistance. Level 2 Introduces authenticated provenance generated by a hosted build at the same time demanding version control system usage. Provenance prevents tampering and offers trust in the build service. Level 3 offers auditability of the source and the integrity of the provenance. Much stronger tampering protection is provided by preventing specific classes of threats such as cross-build contamination. Level 4 requires two-peer source code review and a hermetic, reproducible build process. Overall Level 4 offers a high degree of confidence in the anti-tampering protection of the software. SLSA level is not transitive, thus level of the artifact is not dependent on the level of dependencies, which are expected to have their own SLSA levels. This makes it possible to build a Level 4 artifact from Level 0 dependencies.","breadcrumbs":"Supply Chain Security » SLSA Framework » Levels of Assurance","id":"138","title":"Levels of Assurance"},"139":{"body":"Requirements Level 1 Level 2 Level 3 Level 4 Source — Version controlled ✓ ✓ ✓ Source — Verified history ✓ ✓ Source — Retained indefinitely ✓ ✓ Source — Two-person reviewed ✓ Build — Scripted build ✓ ✓ ✓ ✓ Build — Build service ✓ ✓ ✓ Build — Build as code ✓ ✓ Build — Ephemeral environment ✓ ✓ Build — Isolated ✓ ✓ Build — Parameterless ✓ Build — Hermetic ✓ Build — Reproducible ○ Provenance — Available ✓ ✓ ✓ ✓ Provenance — Authenticated ✓ ✓ ✓ Provenance — Service generated ✓ ✓ ✓ Provenance — Non-falsifiable ✓ ✓ Provenance — Dependencies complete ✓ Common — Security ✓ Common — Access ✓ Common — Superusers ✓ ✓ — required ○ — required unless justified otherwise empty cell — not required","breadcrumbs":"Supply Chain Security » SLSA Framework » Requirements","id":"139","title":"Requirements"},"14":{"body":"Architectural Variants Architecture Decision Records Minimal Host Networking VM Platform Bus for Rust VMM Stack","breadcrumbs":"Architecture » In This Chapter","id":"14","title":"In This Chapter"},"140":{"body":"","breadcrumbs":"Supply Chain Security » Basic Security Measures » Basic Security Measures","id":"140","title":"Basic Security Measures"},"141":{"body":"The source code security is based on the fact that the source code is two-person reviewed, version controlled, and the history is verified and retained indefinitely.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Source Code / Version Control Security","id":"141","title":"Source Code / Version Control Security"},"142":{"body":"All the commits to repositories must be GPG-signed. This can be achieved by enabling GPG commit signatures in the config: git config --global commit.gpgsign true For more detailed information, see the Signing commits article of the GitHub Docs.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Commit Signing","id":"142","title":"Commit Signing"},"143":{"body":"In the case of GitHub the following settings should be considered: Require pull request reviews before merging (req: two-person reviewed source). Require status checks before merging. Require conversation resolution before merging. Require signed commits. Deletions should be forbidden (req: immutable history).","breadcrumbs":"Supply Chain Security » Basic Security Measures » Branch Protection","id":"143","title":"Branch Protection"},"144":{"body":"Software signing is an important measure to validate the author and ensure that the code has not been altered on the way from the developer to the customer. Nix tooling is offering means to sign the derivations using libsodium with EdDSA, however, as the modular system is assumed, scripts need to be developed to support signing mechanisms in an absence of Nix tooling. By default, the software image is signed only at the binary cache per request. Which leaves the path from Hydra to the binary cache unsecured. The problem can be resolved in two ways: Enabling the image signing on Hydra Shared Nix Store","breadcrumbs":"Supply Chain Security » Basic Security Measures » Software Signing","id":"144","title":"Software Signing"},"145":{"body":"Enabling the image signing on Hydra requires some extra work due to the lack of well-documented support of image signing at Hydra at the time of writing this document. As already mentioned, NixOS is using libsodium-based EdDSA solution for image signing. So similar scripts can be implemented. For example, in Python by using existing libsodium bindings, such as PyNaCl. Enabling Image Signing on Hydra","breadcrumbs":"Supply Chain Security » Basic Security Measures » Enabling Image Signing on Hydra","id":"145","title":"Enabling Image Signing on Hydra"},"146":{"body":"The shared NixStore option is rather straightforward if Hydra is combined with the binary cache. This kind of setup is lacking the extra transition path. Thus the packages signed by the binary cache will be served straight from the Hydra NixStore. Shared NixStore Solution","breadcrumbs":"Supply Chain Security » Basic Security Measures » Shared Nix Store","id":"146","title":"Shared Nix Store"},"147":{"body":"All the data should be transported over secure encrypted channels. Since all the transportation is done over TCP/IP protocol stack, it is possible to use native solutions like TLS to secure the traffic between the nodes. Version 1.2 is a minimum requirement.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Data Encryption in Transit","id":"147","title":"Data Encryption in Transit"},"148":{"body":"Software bill of materials (SBOM) is a formal, machine-readable document that provides a list of software components that make up the target software and all its dependencies.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » Software Bill of Materials (SBOM)","id":"148","title":"Software Bill of Materials (SBOM)"},"149":{"body":"There are three main delivery formats and specifications for SBOM: CycloneDX, SPDX, and SWID. CycloneDX is an open-source standard with origins in the OWASP community. The specification's original focus is on security. There's a large growing community and open source tooling that support CycloneDX format. SPDX is also a product of an open-source community, with the original focus on licensing. SPDX is run and maintained by Linux Foundation . Similarly to CycloneDX, many open-source tools support the SPDX format. SWID is a standard that originates from NIST . SWID tags aim to help organizations create accurate software inventories. While SWID can serve as an SBOM too, it is not as widely used SBOM format in open source as the two other specifications.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Formats and Specifications","id":"149","title":"SBOM Formats and Specifications"},"15":{"body":"The main scope of the Ghaf platform is edge virtualization. However, to support modular development and testing of the platform, variants are supported with the following definitions: Default A default variant. Supports minimal host , GUI VM [1] and netvm . May host other VMs. For more information, see Stack . Headless A variant with minimal host and netvm . May host other VMs but does not have GUI VM or graphics stack on a host. Host only A variant with minimal host only . A user can manually install software to a host, including VMs (if supported by hardware). No virtualization A variant for hardware with no support for virtualization. May run any software, similar to popular Linux distributions, but cannot support guest virtual machines. May host any software deployed directly on a host. Variant Name Headless Graphics VMs Devices Default No GUI VM [1] Supported Jetson, generic x86 Headless Yes No Supported Jetson, generic x86 Host Only Yes No May be supported but not included Jetson, generic x86 No Virtualization Yes or no Native on host Not supported Raspberry Pi, RISC-V [1] As of early 2023, the graphics stack is deployed on a host to support application development. Work is ongoing to define the GUI VM and isolate graphics with GPU passthrough.","breadcrumbs":"Architecture » Architectural Variants » Architectural Variants","id":"15","title":"Architectural Variants"},"150":{"body":"Ghaf framework will use SBOMs for: Vulnerability identification: automatic correlation of SBOM against known vulnerabilities. Vulnerability remediation: automatic process to suggest fixes for identified vulnerabilities. Dependency analysis: categorization of open-source and closed source software dependencies. Dependency analysis: creation of a directed acyclic graph License compliance: know and comply with the license obligations. Market signal: publish SBOM together with other release artifacts.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Usage in Ghaf","id":"150","title":"SBOM Usage in Ghaf"},"151":{"body":"Ghaf is based on Nix, therefore, the selected SBOM tooling needs to support creating SBOMs for nix artifacts. As part of the Ghaf project, we have created the sbomnix tool to support SBOM generation for Ghaf and, more generally, for any Nix-based targets. For more details on the SBOM tooling in Ghaf, see sbomnix and nixgraph . sbomnix supports CycloneDX as well as SPDX SBOM specification.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Tooling in Ghaf","id":"151","title":"SBOM Tooling in Ghaf"},"152":{"body":"https://ntia.gov/page/software-bill-materials https://slsa.dev/blog/2022/05/slsa-sbom https://fossa.com/blog/software-bill-of-materials-formats-use-cases-tools https://www.legitsecurity.com/blog/what-is-an-sbom-sbom-explained-in-5-minutes","breadcrumbs":"Supply Chain Security » Software Bill of Materials » References","id":"152","title":"References"},"153":{"body":"In the SCS context, a public key infrastructure (PKI) term refers to a system for the creation, storage, and distribution of digital certificates which are used to verify that a particular key belongs to a certain entity. PKI creates and manages a hierarchical set of digital certificates which map public keys to certain entities. Storage and revocation methodologies are to be defined. The PKI of SCS should consist of: Certificate authority (CA) for storing, issuing, and signing the digital certificates. Registration authority (RA) for requesting entity identity verification. Central directory for the secure storage of the keys. Certificate Management System (CMS) for managing access to stored certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Public Key Infrastructure","id":"153","title":"Public Key Infrastructure"},"154":{"body":"PCA enables the creation of private certificate authority hierarchies, consisting of Root and Subordinate CAs. It issues end-entity X.509 certificates, that are used for: Encrypted TLS communication channels (data encryption in transit) Code and image signing PCA can be established in the cloud or on-premises. Initially, the OpenSSL-based solution deployed on-premises is assumed, however, some of the target projects might consider using commercial cloud solutions.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Private Certificate Authority (PCA)","id":"154","title":"Private Certificate Authority (PCA)"},"155":{"body":"On-premises solution can be further improved by adding a Hardware Security Module (HSM). It is a physical device for managing cryptographic material such as digital keys. HSM can be also used to perform cryptographic operations such as digital signing, encryption, and decryption. The HSM contains one or more Secure Cryptoprocessors that are dedicated microprocessors optimized for carrying out cryptographic operations. One example of affordable HSM solutions is YubiHSM developed by Yubico.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Hardware Security Module","id":"155","title":"Hardware Security Module"},"156":{"body":"The following HSM solutions are considered for the Ghaf project: YubiHSM2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM The following table provides feature comparison of the proposed solutions: Since the feature list is quite extensive, the table is limited to the features that are either planned to be used in Ghaf or might benefit the project in the future. Feature YubiHSM 2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM Secure key storage ✓ ✓ ✓ ✓ ECC ✓ ✓ ✓ ✓ EdDSA (ed25519) ✓ ? ECDSA ✓ ✓ ✓ ✓ RSA ✓ ✓ ✓ PKCS#11 interface ✓ ✓ ✓ ✓ Network shareable ✓ ✓ M of N wrap rule ✓ ✓ Tamper evident audit logging ✓ Storage capacity 128KB, 255xAny ECC 76KB, 35xECC-512 9.7Kb, 16 slots Price 650EUR (VAT 0%) 99 EUR FOSS HW Costs YubiHSM2 is the leading solution considering its cryptographic capabilities. However, taking into account quite modest needs of SCS, NitrokeyHSM2 represents an adequate option. The main benefit of YubiHSM2 from SCS perspective is its native support of EdDSA-curve25519, which is the one that NixOS is using for package signing. Thus YubiHSM2 could be used directly with NixOS. However, as the package doesn't change in transit from the Build System to the Consumer, usage of inbuilt tooling is not always necessary. BreadboardHSM solution is based on Microchip ATECC608B (TrustFLEX + cryptoauthlib + gtutls), though development work is still ongoing at the time of writing this document. The SoftHSMv2 and BreadboardHSM are taken for comparison showing what can be achieved using FOSS variants.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » HSM Variants for Consideration","id":"156","title":"HSM Variants for Consideration"},"157":{"body":"CA usually consists of: Root CA - the root of trust of the entire PKI, for issuing and signing the certificates used by other CAs. Subordinate CA for issuing end-entity certificates. There are three types of hierarchies: one-tier, two-tier, and three-tier. The hierarchy can be chosen based on the target project's needs and complexity. A one-tier hierarchy is not considered for any production usage due to the low security, as the compromise of a single CA leads to a compromise of the entire PKI. In a two-tier hierarchy, the Root CA and issuing (Subordinate) CAs are separated for increasing the security level. This is the simplest production level hierarchy allowing to keep Root CA at the most secure and restrictive levels, yet making subordinate CA access slightly more permissive. This hierarchy is most likely sufficient for most of the target projects. In a three-tier CA, an intermediate CA is placed between the Root CA and the Subordinate (issuing) CA. This is done to separate the Root CA from low-level CA operations. The middle layer (intermediate CA) is only used to sign Subordinate CAs that issue the end-entity certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » CA Hierarchy Options","id":"157","title":"CA Hierarchy Options"},"158":{"body":"The following diagram describes the proposed CA for the SCS. The three-tier CA is chosen based on the high-security level and the potential need to scale it to several projects, later on, keeping the main control under the same Root CA. Proposed CA","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Proposed CA Hierarchy","id":"158","title":"Proposed CA Hierarchy"},"159":{"body":"The Nix community is able to identify and fix security issues relatively quickly. At the same time, the community process to ensure critical security fixes are included in nixpkgs is unclear or unspecified. Indeed, Ghaf should not solely rely on the community to provide security fixes but take action to understand the vulnerabilities that impact Ghaf and take an active role in fixing such issues.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Security Fix Automation","id":"159","title":"Security Fix Automation"},"16":{"body":"Architecturally significant decisions are recorded as architecture decision records (ADR) . The Ghaf platform decision log: Decision Record Status Minimal Host Proposed. netvm—Networking Virtual Machine Proposed, partially implemented for development and testing. Platform Bus for RustVMM Proposed, WIP. To create an architectural decision proposal, open a pull request and use the decision record template . Contributions to the Ghaf architecture decisions are welcome.","breadcrumbs":"Architecture » Architecture Decision Records » Architecture Decision Records","id":"16","title":"Architecture Decision Records"},"160":{"body":"The following image captures the high-level process we propose to identify and remediate the security vulnerabilities that impact Ghaf: Security Fix Automation The process consists of two parts - automated and manual : Automated vulnerability analysis is a scripted job triggered on a daily basis in Ghaf CI/CD. It consists of the following actions: (1) Locally (temporarily) update the Ghaf flake lock file. Temporary lock file update is needed so the Ghaf dependencies are up-to-date with the nixpkgs input Ghaf is pinned to. Otherwise, the automated analysis results would also include vulnerabilities that have been fixed in nixpkgs upstream since the last Ghaf flake lock update. (2) Run automated vulnerability analysis tooling for each relevant Ghaf build target. For Ghaf, being Nix-based, we propose to use nix_secupdates for automated vulnerability analysis. As a result of this step, the tooling generates an auto-triaged vulnerability report, which will be the main input for the manual analysis. Manual vulnerability analysis is a manual process, which is also executed on daily basis. (3) Using the auto-triaged vulnerability report from the previous step, manually analyze the automation results comparing the new results to earlier day's results from the relevant build. (4) If there are any fixed issues compared to the last analyzed report, initiate the Ghaf flake lock file update for relevant inputs to include the vulnerability fixes from the nixpkgs upstream to relevant Ghaf branches. (5) If there are any new vulnerabilities compared to the last analyzed report, manually analyze each vulnerability in detail. If the issue requires a fix, create a pull request to push the changes to relevant nixpkgs branches. The process described above is an upstream-first, with the main benefit of eliminating the need to maintain our own vulnerability fix patches on top of nixpgks in Ghaf. This process will also benefit the nixpkgs community, contributing to the overall security improvement for the packages Ghaf depends on.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Semi-Automated Upstream-First Process","id":"160","title":"Semi-Automated Upstream-First Process"},"161":{"body":"Ghaf is released 4 times per year at the end of each quarter. Additional releases may be made as per request. Release numbering scheme: ghaf-yy.mm .","breadcrumbs":"Release Notes » Ghaf Release Notes","id":"161","title":"Ghaf Release Notes"},"162":{"body":"Release ghaf-23.12 Release ghaf-23.09 Release ghaf-23.06 Release ghaf-23.05","breadcrumbs":"Release Notes » In This Chapter","id":"162","title":"In This Chapter"},"163":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release ghaf-23.12","id":"163","title":"Release ghaf-23.12"},"164":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.12","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release Branch","id":"164","title":"Release Branch"},"165":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.12 » Supported Hardware","id":"165","title":"Supported Hardware"},"166":{"body":"NixOS update to 23.11: NixOS 23.11 released! Further modularization of the Ghaf framework: Ghaf as Library: Templates . CLI-based installer. Lenovo X1 Carbon Gen 11: Configurable PCI and USB devices passthrough. Network Manager: support from GUIVM to NETVM. Windows VM support. Added Ghaf icons and the background image. Secure Boot is disabled by default. The hardened host kernel baseline is disabled by default. Initial hardened hypervisor integration is disabled by default. NVIDIA Jetson Orin: Configurable PCI passthrough. Jetpack baseline software updates and fixes. Initial OP-TEE and TEE Proxy support. Cross-compilation of the ARM targets (NVIDIA) on the x86 server. SLSA v1.0 level 2 compatible build. Development, testing, and performance tooling improvements.","breadcrumbs":"Release Notes » Release ghaf-23.12 » What is New in ghaf-23.12","id":"166","title":"What is New in ghaf-23.12"},"167":{"body":"Fixed bugs that were in the ghaf-23.09 release: Chromium AppVM does not boot up on X1. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes). Copy and paste text from or to Chromium AppVM does not work. Copy text from the address bar does not work as well. Personal security keys cannot be created. Cannot move the Element window by dragging with the mouse.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Bug Fixes","id":"167","title":"Bug Fixes"},"168":{"body":"Issue Status Comments The GALA application does not work In Progress Will be fixed in the next release. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Copying text from the browser address bar to another application does not work In Progress Under investigation Windows launcher application does not work on NUC and AGX In Progress Workaround: launch Windows VM from the command line. Time synchronization between host and VMs does not work in all scenarios In Progress Under investigation The taskbar disappears after the external display is disconnected from Lenovo X1 In Progress Under investigation Closing and re-opening a deck lid of a X1 laptop with running Ghaf causes instability In Progress Workaround: Keep a deck lid of a laptop open while working with Ghaf. Applications do not open from icons when NETVM is restarted In Progress Workaround: Restart AppVMs.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Known Issues and Limitations","id":"168","title":"Known Issues and Limitations"},"169":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Environment Requirements","id":"169","title":"Environment Requirements"},"17":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal Host","id":"17","title":"Minimal Host"},"170":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.12/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.12_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.12_Lenovo_X1_Carbon_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.12_Nvidia_Orin_AGX_cross-compiled-no-demoapps.tar.xz [1] , ghaf-23.12_Nvidia_Orin_AGX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_AGX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_Nvidia_Orin_NX_cross-compiled-no-demoapps [1] .tar.xz, ghaf-23.12_Nvidia_Orin_NX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_NX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit [1] no-demoapps images do not include Chromium, Zathura, and GALA applications.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Installation Instructions","id":"170","title":"Installation Instructions"},"171":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release ghaf-23.09","id":"171","title":"Release ghaf-23.09"},"172":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.09","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release Branch","id":"172","title":"Release Branch"},"173":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.09 » Supported Hardware","id":"173","title":"Supported Hardware"},"174":{"body":"New supported target hardware: NVIDIA Jetson Orin NX Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11 Modularization of the Ghaf framework: Ghaf as Library: Templates . NVIDIA Jetson Orin NX Ethernet passthrough. Lenovo X1 Carbon Gen 11: Graphics passthrough to GUIVM. Launching Application VMs through GUIVM (Chromium, Gala, and Zathura). Paravirtualized audio. Webcam passthrough. Touchpad passthrough. Cross-compilation of the ARM targets (NVIDIA) on the x86 server (with demo applications excluded).","breadcrumbs":"Release Notes » Release ghaf-23.09 » What is New in ghaf-23.09","id":"174","title":"What is New in ghaf-23.09"},"175":{"body":"Fixed bugs that were in the ghaf-23.06 release: NVIDIA Jetson AGX Orin: Cannot open Windows launcher via shortcut or command line. No Windows launcher in x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Bug Fixes","id":"175","title":"Bug Fixes"},"176":{"body":"Issue Status Comments Chromium AppVM does not boot up on X1 In Progress Intermittent timing issue, under investigation. The GALA app does not work In Progress Will be fixed in the next release. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes) In Progress Advice: be patient or, if in hurry, press power key for 15 sec. Copy and paste text from or to Chromium AppVM does not work In Progress Element cannot be opened on NVIDIA AGX Orin HW on the host Will not Fix Applications on the host will not be supported in the longer term. Cannot move the GALA/Element window by dragging with the mouse In Progress Workaround: press Windows key when moving the mouse. Personal security keys cannot be created In Progress Workaround: use another device to create security keys. No audio in a USB headset when running the application on the host Will not Fix Audio on a host is not supported. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Windows launcher application does not work In Progress Workaround: launch Windows VM from the command line.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Known Issues and Limitations","id":"176","title":"Known Issues and Limitations"},"177":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Environment Requirements","id":"177","title":"Environment Requirements"},"178":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.09/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.09_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.09_Lenovo_X1_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.09_Nvidia_Orin_AGX.tar.xz, ghaf-23.09_Nvidia_Orin_NX.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.09_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Release Notes » Release ghaf-23.09 » Installation Instructions","id":"178","title":"Installation Instructions"},"179":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release ghaf-23.06","id":"179","title":"Release ghaf-23.06"},"18":{"body":"Proposed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Status","id":"18","title":"Status"},"180":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.06","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release Branch","id":"180","title":"Release Branch"},"181":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.06 » Supported Hardware","id":"181","title":"Supported Hardware"},"182":{"body":"Ghaf Modularization (partially done): general description and context on how to use: Ghaf as Library: Templates the development status: https://github.com/tiiuae/ghaf/tree/ghaf-23.06/modules . SLSA v1.0 level provenance file included. Ghaf version information (query). NixOS is updated to 23.05: NixOS 23.05 released!","breadcrumbs":"Release Notes » Release ghaf-23.06 » What is New in ghaf-23.06","id":"182","title":"What is New in ghaf-23.06"},"183":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Bug Fixes","id":"183","title":"Bug Fixes"},"184":{"body":"Known since ghaf-23.05: Personal security keys cannot be created. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account Workaround for x86: create a separate user account for Element. Element cannot be opened on NVIDIA Jetson AGX Orin. Cannot move the GALA/Element window by dragging with the mouse. No windows-launcher in the x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Known Issues and Limitations","id":"184","title":"Known Issues and Limitations"},"185":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release ghaf-23.05","id":"185","title":"Release ghaf-23.05"},"186":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.05","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release Branch","id":"186","title":"Release Branch"},"187":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.05 » Supported Hardware","id":"187","title":"Supported Hardware"},"188":{"body":"This is the first release of Ghaf including support for: the Wayland display server protocol (on the host) the graphical interface with Weston Window Manager (on the host) the Chromium browser (on the host) Element, a Matrix-based chat client (on the host) the Google Android look-alike (GALA) application Ghaf Framework is under active development, some of the features may not be stable.","breadcrumbs":"Release Notes » Release ghaf-23.05 » What is New in ghaf-23.05","id":"188","title":"What is New in ghaf-23.05"},"189":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin. Prevents logging into GALA and Element applications. Personal security keys cannot be created: Prevents running Android in the Cloud. Workaround: use another device to create security keys. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account. Workaround: create a separate user account for Element.","breadcrumbs":"Release Notes » Release ghaf-23.05 » Known Issues and Limitations","id":"189","title":"Known Issues and Limitations"},"19":{"body":"Ghaf uses the default NixOS configuration as a baseline to build the target image. The default NixOS configuration is targeted for more general use with the inclusion of multiple packages that are not supporting the Ghaf design target of a minimal TCB to protect the host. Depending on the flexibility of the NixOS configuration, Ghaf minimal host may require new development to support the requirements. This structure in the Ghaf host configuration imports the NixOS minimal profile which suits the minimal TCB better. Even better, the modular declarative profile enables the further optimization of the minimal TCB while supporting other profiles that suit the evaluation of other objectives such as feasibility studies of additional functionality, security and performance.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Context","id":"19","title":"Context"},"190":{"body":"The Ghaf Platform can be used in various different environments, configurations, and hardware to serve several purposes. Ghaf is not a fully-fledged product but a module that can serve as a centerpiece to enable secure edge systems.","breadcrumbs":"Showcases » Showcases","id":"190","title":"Showcases"},"191":{"body":"Secure Laptop demonstrates how our open-source Ghaf Platform can increase the security offering for laptops through hardware-backed isolation by means of virtualization. We use Lenovo ThinkPad X1 Carbon Gen 11 as a target device. In this showcase, the following applications are running in isolated VMs: Windows VM Browser VM that can be used as an application launcher. For example, MS Office suite running in the Browser environment. All data is stored in the enterprise cloud. PDF Viewer VM. No data can be extracted or shared locally. Cloud Android VM for secure communication. Each VM operates independently and securely within its own isolated environment, without interference from other VMs running on the same physical hardware. Additionally beneath the surface Ghaf contains two hidden system VMS: Networking VM GUI VM Ghaf Secure Laptop","breadcrumbs":"Showcases » Secure Laptop","id":"191","title":"Secure Laptop"},"192":{"body":"Running Windows VM on Ghaf Running Cuttlefish on Ghaf","breadcrumbs":"Showcases » In This Chapter","id":"192","title":"In This Chapter"},"193":{"body":"You can run Windows 11 in a VM on Ghaf with NVIDIA Jetson Orin AGX (ARM64) or Generic x86 device. This method uses QEMU as VMM. For information on how to build and run a Ghaf image, see Build and Run . Windows 11 in VM","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM on Ghaf","id":"193","title":"Running Windows 11 in VM on Ghaf"},"194":{"body":"Depending on the device: For Generic x86, download Windows 11 ISO ( Win11_22H2_English_x64v2.iso ) from the Microsoft website. For NVIDIA Jetson Orin AGX (ARM64), use your Microsoft account to join the Windows Insider Program . On the Windows 11 on Arm Insider Preview page, select the Windows 11 Client Arm64 Insider Preview (Canary) - Build 25324 build and the language to download a VHDX image file. Copy the image to an external USB drive. Connect the USB drive to the device with the latest version of Ghaf installed, and mount it to some folder. sudo mkdir /mnt\nsudo mount /dev/sda /mnt WARNING: [For NVIDIA Jetson Orin AGX] Make sure to use a fresh VHDX image file that was not booted in another environment before.","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Getting Windows 11 Image","id":"194","title":"Getting Windows 11 Image"},"195":{"body":"Running Windows 11 in VM on ARM64 Device (NVIDIA Jetson Orin AGX) In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. TIP: If after pressing Shift+F10 the command window is not displayed, try to switch between opened windows by using Alt+Tab. Running Windows 11 in VM on Generic x86 Device On x86_64 device Windows 11 VM can be launched with either an ISO image or QCOW2: For an ISO image, the script creates an empty QCOW2 image in the same directory which is used as a system disk in the VM. After installing Windows 11, run the script for the QCOW2 image. Do the following: In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Win11_22H2_English_x64v2.iso When the VM starts booting press any key to boot from a CD. In order to bypass Windows 11 system requirements, open cmd with Shift+F10 and type regedit. In HKEY_LOCAL_MACHINE\\SYSTEM\\Setup, right-click New > Key and type LabConfig. For this key create two DWORD (32-bit) parameters: Name: BypassTPMCheck, value 1. Name: BypassSecureBootCheck, value 1. TIP: [For Ghaf running on a laptop] If after pressing Shift+F10 the command window is not displayed, try again with the Fn key (Shift+Fn+F10) or switch between opened windows by using Alt+Tab. Install Windows 11 in the VM. Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. After the installation is completed the script is launched with the QCOW2 image: windows-launcher ./win11.qcow2","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM","id":"195","title":"Running Windows 11 in VM"},"196":{"body":"Instead of running Windows launcher from the command line it is possible to launch the Windows 11 VM by clicking the corresponding icon in the Weston taskbar. When you click it for the first time, you will see a file selection dialog. Once Windows 11 image has been selected, it saves the path to the ~/.config/windows-launcher-ui.conf configuration file and launches the VM. Next time, the VM will be immediately launched with one click. In order to use a different image instead of the saved one, delete the configuration file: rm ~/.config/windows-launcher-ui.conf","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Using UI to Launch Windows 11 VM","id":"196","title":"Using UI to Launch Windows 11 VM"},"197":{"body":"It is possible to pass additional parameters to QEMU when running Windows launcher from the command line. NVIDIA Jetson Orin AGX (ARM64) example: windows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX -serial stdio Generic x86 example: windows-launcher ./win11.qcow2 -serial stdio","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Passing Additional Parameters to QEMU","id":"197","title":"Passing Additional Parameters to QEMU"},"198":{"body":"Cuttlefish is a configurable virtual Android device (virtual-machine based Android emulator) that can run both remotely (using third-party cloud offerings such as Google Cloud Engine) and locally (on Linux x86 machines). For more information about Cuttlefish, see the official Cuttlefish Virtual Android Devices documentation. You can run Android as a VM on Ghaf for testing and development purposes using NVIDIA Jetson Orin AGX (ARM64) or Generic x86.","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Android Cuttlefish Virtual Device on Ghaf","id":"198","title":"Running Android Cuttlefish Virtual Device on Ghaf"},"199":{"body":"Download host_package (includes binaries and scripts that must be run on the host machine to set up and run the Cuttlefish virtual device) and aosp_cf_phone-img (a system image) files from the Android CI server and copy them to Ghaf: For NVIDIA Jetson Orin AGX (ARM64): cvd-host_package.tar.gz and aosp_cf_arm64_phone-img-9970479.zip For Generic x86: cvd-host_package.tar.gz and aosp_cf_x86_64_phone-img-9970479.zip Download a host package from the same build as the image. Make sure Internet connection is working in Ghaf. If the system gets an IP address but the DNS server is not responding, set the correct date and time. [For x86_64 only] Install the required packages: NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix-env -i python3 openssl bash unzip Create some hackish links that are required for running Cuttlefish: sudo ln -s $(which mv) /bin/mv\nsudo ln -s $(which bash) /bin/bash\nsudo mkdir -p /usr/lib/cuttlefish-common/bin/\nsudo touch /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo chmod 755 /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo groupadd -f cvdnetwork\nsudo usermod -aG cvdnetwork $USER\nsudo usermod -aG kvm $USER\nsudo su ghaf Change directory to the one that contains host package and image files and extract them: For NVIDIA Jetson Orin AGX (ARM64): tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_arm64_phone-img-9970479.zip For Generic x86: tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_x86_64_phone-img-9970479.zip [For x86_64 only] Extra steps to fix missing dependencies: Find ld-linux-x86-64.so.2 and create a link in /lib64: sudo find /nix/store -name ld-linux-x86-64.so.2\nsudo mkdir /lib64\nsudo ln -s /nix/store/dg8mpqqykmw9c7l0bgzzb5znkymlbfjw-glibc-2.37-8/lib/ld-linux-x86-64.so.2 /lib64 Find libdrm.so.2 in the /nix/store and copy it to the lib64 directory where the host package was extracted: sudo find /nix/store -name libdrm.so.2\ncp /nix/store/2jdx0r0yiz1k38ra0diwqm5akb0k1rjh-libdrm-2.4.115/lib/ ./lib64","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Installing Cuttlefish","id":"199","title":"Installing Cuttlefish"},"2":{"body":"The Ghaf Platform development is focused on the transition to a modular architecture for edge devices. Products such as secure phones, drones, laptops, and other communication devices have unique challenges in their respective hardware and software ecosystems. Enabling the integration of individual technology stacks into an organizational framework can be a challenging task. The Ghaf Platform is designed to ease this process and enable research to overcome a number of challenges.","breadcrumbs":"About Ghaf » Ghaf Platform Applications","id":"2","title":"Ghaf Platform Applications"},"20":{"body":"Following table describes the development requirements of minimal host. All requirements originate from TII SSRC unless otherwise noted. Scope further defines: target configuration: R for release, D for debug architectural variant : V for virtualization supporting variant, A for all, including No Virtualization Compliance states the progress of requirement compliance as follows: D for Designed, design requirement from TII SSRC for analysis and evaluation. I for Implemented, design requirement met with possible, limitations documented under Consequences . P for Proposed, raised for discussion but not yet designed. M for Met, the requirement is reviewed and approved at technology readiness level 4 . ID Requirement Description Scope Compliance MH01 Defined in nix Host declaration in nix R&D,A I MH02 Reduced profile Remove unnecessary R, V I MH03 No networking Host has no networking R, V D MH04 No graphics Host has no GUI stack R, V D MH05 No getty Host has no terminal R, V P MH06 No nix tooling Only /nix/store, no nix R, V P MH07 Minimal defconfig Host kernel is minimized R, V D MH08 Update via adminvm A/B update outside host R, V P MH09 Read-only filesystem Mounted RO, integrity checked R, V P This list of requirements is not yet comprehensive and may be changed based on findings of further analysis as stated in the following section.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Requirements","id":"20","title":"Requirements"},"200":{"body":"Go to the directory with exctacted host package and image files and run Cuttlefish: HOME=$PWD ./bin/launch_cvd -report_anonymous_usage_stats=n It will take some time to load. There should be the following messages in the console when the VM is booted and ready to use: VIRTUAL_DEVICE_DISPLAY_POWER_MODE_CHANGED\nVIRTUAL_DEVICE_BOOT_STARTED\nVIRTUAL_DEVICE_BOOT_COMPLETED\nVirtual device booted successfully","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Cuttlefish","id":"200","title":"Running Cuttlefish"},"201":{"body":"Run the Chromium browser by clicking on the corresponding icon in Weston and navigate to https://localhost:8443 . Ignore a warning about the SSL certificate (“Your connection is not private“) and click Advanced > Proceed to 127.0.0.1 (unsafe) . Click the cvd-1 Connect button. A new tab with an Android VM window will be opened. [Optionally] You can close the browser and use the following command to open a standalone window with an Android VM: chromium-browser --enable-features=UseOzonePlatform --ozone-platform=wayland --new-window --app=https://127.0.0.1:8443/client.html?deviceId=cvd-1","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Connecting to Cuttlefish Device","id":"201","title":"Connecting to Cuttlefish Device"},"202":{"body":"This is a glossary of terms and abbreviations developed by the Ghaf team. Abbreviation is a shortened form of a word or phrase. Usually is used to save space and time, to avoid repetition of long words and phrases. The styling of abbreviations is inconsistent and includes several possible variations. Some abbreviations are formed by omitting all but the first few letters of a word. Such abbreviations usually end in a period: Mr. for mister, Oct. for October. When abbreviations are formed from the initial letters of a phrase, they are categorized as either initialisms or acronyms : With initialisms , each letter is pronounced separately. For example: FBI for Federal Bureau of Investigation, CIA for Central Intelligence Agency, CD for Compact Disk, and also OK for Okay, ‘orl korrekt‘ that is a misspelling of \"all correct\". Initialisms cannot be pronounced as words. Acronyms are another type of abbreviation formed from the initial letters but that are pronounced as if they were words themselves. For example: ROFL for ‘rolling on the floor laughing’, FEMA for Federal Emergency Management Agency, NATO for North Atlantic Treaty Organization. All acronyms are abbreviations, but not all abbreviations are acronyms. ASAP that comes from ‘as soon as possible’ and appt (for appointment) are both considered abbreviations, but only ASAP is an acronym.","breadcrumbs":"Glossary » Glossary","id":"202","title":"Glossary"},"203":{"body":"Articles (a, an, the) are common with initialisms. The indefinite article should be chosen according to the first sound—not the first letter: ‘A’ is correct before initialisms beginning with a consonant sound, including a vowel pronounced as a ‘w’ or ‘y’ sound. For example: ‘a NASA launch’, but ‘NASA launches take place’. When an initialism begins with a vowel sound (including silent consonants or a consonant pronounced with an initial vowel sound), ‘an’ should be used instead. For example, ‘read about an FBI raid’. Acronyms not require articles except when they are used adjectivally. For example: ‘the patient was diagnosed with AIDS’, but ‘the AIDS patient’; ‘the NASA launch takes place’. So, read the abbreviation aloud: it may be either an initialism or an acronym. Focus on the sounds, not on the letters: ‘ an unidentified flying object’ but ‘ a UFO’ as it pronounced “a YOO-ef-OH” (/ˌjuːɛfˈəʊ/). More examples: a EULA (“YOO-luh”), a LAN router, an XML file, an HTML page.","breadcrumbs":"Glossary » Appropriate Use of Articles before Abbreviations","id":"203","title":"Appropriate Use of Articles before Abbreviations"},"204":{"body":"If you do not find the term or abbreviation you are looking for, share your questions using GitHub Issues . Wikipedia is not a dictionary. Groups of terms and abbreviations: Project Related Core Concepts SCS Related","breadcrumbs":"Glossary » Trivia","id":"204","title":"Trivia"},"205":{"body":"","breadcrumbs":"Glossary » Project Related","id":"205","title":"Project Related"},"206":{"body":"The project code name that represents the Ghaf tree. Source: https://connectwithnature.ae/knowledge-hub/ghaf-tree","breadcrumbs":"Glossary » Ghaf","id":"206","title":"Ghaf"},"207":{"body":"Continuous Integration and Continuous Delivery is a Ghaf software development lifecycle. Continuous Integration refers to regularly integrating code changes into a shared repository, where they are automatically tested and verified. Continuous Delivery—software is released in short iterations. Currently, Continuous Deployment is not set up. Continuous Deployment—code is deployed to customers automatically.","breadcrumbs":"Glossary » CI/CD","id":"207","title":"CI/CD"},"208":{"body":"Secure Systems Research Center is a global center of excellence in the development of end-to-end security and resilience for cyber-physical and autonomous systems. SSRC is a part of TII. Source: https://www.tii.ae/secure-systems","breadcrumbs":"Glossary » SSRC","id":"208","title":"SSRC"},"209":{"body":"Technology Innovation Institute is a UAE-based research center that aims to lead global advances in artificial intelligence, autonomous robotics, quantum computing, cryptography and quantum communications, directed energy, secure communication, smart devices, advanced materials, and propulsion and space technologies. Source: https://www.tii.ae/","breadcrumbs":"Glossary » TII","id":"209","title":"TII"},"21":{"body":"This ADR adopts a custom developed minimal profile using nixpkgs. It reduces both image and root partition size by eliminating the host OS content per requirements and implements a minimal TCB. The current implementation of NixOS overridden. For more information on a minimal host profile, see minimal.nix . With the progress of implementing the requirements, the minimal host customization will be illustrated.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Decision","id":"21","title":"Decision"},"210":{"body":"","breadcrumbs":"Glossary » Core Concepts","id":"210","title":"Core Concepts"},"211":{"body":"An Architecture Decision (AD) is a justified software design choice that addresses a functional or non-functional requirement that is architecturally significant. An Architectural Decision Record (ADR) captures a single AD and its rationale; the collection of ADRs created and maintained in a project constitute its decision log. Source: https://adr.github.io/","breadcrumbs":"Glossary » ADR","id":"211","title":"ADR"},"212":{"body":"Boot and Power Management Processor. The NVIDIA processor provides a set of hardware functions that support booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. Source: NVIDIA Orin Series System-on-Chip, Technical Reference Manual, Version: 1.2, Date: 29-September-2023","breadcrumbs":"Glossary » BPMP","id":"212","title":"BPMP"},"213":{"body":"A board support package is a collection of software used to boot and run the embedded system.","breadcrumbs":"Glossary » BSP","id":"213","title":"BSP"},"214":{"body":"The Dynamic Host Configuration Protocol is a network protocol that automatically sets IP addresses and other attributes to enable information transfer between network nodes. Source: Computer Networks: A Systems Approach, https://book.systemsapproach.org/internetworking/basic-ip.html#host-configuration-dhcp","breadcrumbs":"Glossary » DHCP","id":"214","title":"DHCP"},"215":{"body":"A direct memory access is a process in which data may be moved directly to or from the main memory of a computer system by operations not under the control of the central processing unit. Source: https://www.collinsdictionary.com/dictionary/english/direct-memory-access","breadcrumbs":"Glossary » DMA","id":"215","title":"DMA"},"216":{"body":"embedded MultiMediaCard","breadcrumbs":"Glossary » eMMC, e-MMC","id":"216","title":"eMMC, e-MMC"},"217":{"body":"end-user license agreement","breadcrumbs":"Glossary » EULA","id":"217","title":"EULA"},"218":{"body":"firmware","breadcrumbs":"Glossary » FW","id":"218","title":"FW"},"219":{"body":"The Google Android Look Alike application. Mobile client application for connecting to a Cloud Android device in Secured Google Cloud Platform VMs. Users see a remotely rendered Android phone desktop on their own device screen and interact with the Cloud Android device like the real mobile device. All application processing runs in the cloud.","breadcrumbs":"Glossary » GALA","id":"219","title":"GALA"},"22":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Consequences","id":"22","title":"Consequences"},"220":{"body":"graphical user interface","breadcrumbs":"Glossary » GUI","id":"220","title":"GUI"},"221":{"body":"An intrusion detection system (also intrusion prevention system or IPS) monitors network traffic for suspicious activity and report when such activity is discovered.","breadcrumbs":"Glossary » IDS","id":"221","title":"IDS"},"222":{"body":"input–output memory management unit","breadcrumbs":"Glossary » IOMMU","id":"222","title":"IOMMU"},"223":{"body":"The Internet Protocol is a set of rules for communication over the Internet, such as sending email, streaming video, or connecting to a website.","breadcrumbs":"Glossary » IP","id":"223","title":"IP"},"224":{"body":"An Instruction Set Architecture is part of the abstract model of a computer that defines how the CPU is controlled by the software. Source: https://www.arm.com/glossary/isa","breadcrumbs":"Glossary » ISA","id":"224","title":"ISA"},"225":{"body":"Kernel-based Virtual Machine, an open-source virtualization technology built into Linux.","breadcrumbs":"Glossary » KVM","id":"225","title":"KVM"},"226":{"body":"Kernel-based Virtual Machine Secured, an open-source project. Source: https://github.com/jkrh/kvms","breadcrumbs":"Glossary » KVMS","id":"226","title":"KVMS"},"227":{"body":"Lab Wayland Compositor, a window-stacking compositor for Wayland, an open-source project. Source: https://github.com/labwc/labwc","breadcrumbs":"Glossary » labws, LabWS","id":"227","title":"labws, LabWS"},"228":{"body":"memory management unit","breadcrumbs":"Glossary » MMU","id":"228","title":"MMU"},"229":{"body":"Message Signaled Interrupts","breadcrumbs":"Glossary » MSI","id":"229","title":"MSI"},"23":{"body":"Ghaf minimal host module is implemented in nix modules . Currently, host and VM declarations are implemented using microvm.nix but this is not strict requirement for ghaf release mode declarations if the limitations or dependencies of microvm.nix do not comply with other requirements. This may require separate release mode custom nix declarations to support flexibility with microvm.nix in debug mode.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Defined in nix (MH01)","id":"23","title":"Defined in nix (MH01)"},"230":{"body":"A Linux distribution based on the Nix package manager and build system. Source: https://nixos.wiki/wiki/Overview_of_the_NixOS_Linux_distribution","breadcrumbs":"Glossary » NixOS","id":"230","title":"NixOS"},"231":{"body":"original equipment manufacturer","breadcrumbs":"Glossary » OEM","id":"231","title":"OEM"},"232":{"body":"operating system","breadcrumbs":"Glossary » OS","id":"232","title":"OS"},"233":{"body":"Peripheral Component Interconnect","breadcrumbs":"Glossary » PCI","id":"233","title":"PCI"},"234":{"body":"Peripheral Component Interconnect Express","breadcrumbs":"Glossary » PCIe","id":"234","title":"PCIe"},"235":{"body":"A generic and open source machine emulator and virtualizer. Source: QEMU’s documentation","breadcrumbs":"Glossary » QEMU","id":"235","title":"QEMU"},"236":{"body":"The Server Base System Architecture specifies a hardware system architecture, based on Arm 64-bit architecture, that server system software, for example operating systems, hypervisors, and firmware can rely on. Source: Arm® Server Base System Architecture 7.1 Platform Design Document","breadcrumbs":"Glossary » SBSA","id":"236","title":"SBSA"},"237":{"body":"A stock keeping unit, is a unique code used by sellers to identify and track products.","breadcrumbs":"Glossary » SKU","id":"237","title":"SKU"},"238":{"body":"A system on chip, a microchip that contains the necessary electronic circuits for a fully functional system on a single integrated circuit (IC).","breadcrumbs":"Glossary » SoC","id":"238","title":"SoC"},"239":{"body":"solid-state drive","breadcrumbs":"Glossary » SSD","id":"239","title":"SSD"},"24":{"body":"Initial Ghaf minimal profile host size reduction is implemented with metrics on host total size and break down of size of the largest dependencies. Based on the metrics, further analysis is needed on several key modules including, but not limited to, kernel, systemd and nixos.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Reduced profile (MH02)","id":"24","title":"Reduced profile (MH02)"},"240":{"body":"Trusted computing base defines the security requirements by providing separation of users and data or resources. Source: Department of Defense trusted computer system evaluation criteria, DoD 5200.28-STD, 1985","breadcrumbs":"Glossary » TCB","id":"240","title":"TCB"},"241":{"body":"Transport Layer Security, a security protocol.","breadcrumbs":"Glossary » TLS","id":"241","title":"TLS"},"242":{"body":"An universal asynchronous receiver-transmitter, a hardware communication protocol.","breadcrumbs":"Glossary » UART","id":"242","title":"UART"},"243":{"body":"Unified Extensible Firmware Interface is a specifications that defines a new model for the interface between personal-computer operating systems and platform firmware. Source: Unified Extensible Firmware Interface Forum","breadcrumbs":"Glossary » UEFI","id":"243","title":"UEFI"},"244":{"body":"user interface","breadcrumbs":"Glossary » UI","id":"244","title":"UI"},"245":{"body":"Virtual Function I/O Source: https://docs.kernel.org/driver-api/vfio.html","breadcrumbs":"Glossary » VFIO","id":"245","title":"VFIO"},"246":{"body":"virtual machine","breadcrumbs":"Glossary » VM","id":"246","title":"VM"},"247":{"body":"Virtual Machine Manager","breadcrumbs":"Glossary » VMM","id":"247","title":"VMM"},"248":{"body":"zero trust architecture, zero trust security model","breadcrumbs":"Glossary » ZTA","id":"248","title":"ZTA"},"249":{"body":"","breadcrumbs":"Glossary » SCS Related","id":"249","title":"SCS Related"},"25":{"body":"Currently ghaf host profile for both release and debug target has networking. Requirement of no networking on release target requires declarative host configuration where: The release target host kernel is built without networking support. Networking must be enabled for debug target. The release target host user space has no networking tools nor configurations. Access to tools on host must be enabled for debug target. To support development of configuration changes between release and debug target, the debug target must support networking. This also supports No Virtualization-variant development in which networking must be enabled. The exception to no networking requirement is the virtual machine manager control socket from host to guest(s). The amount of required kernel configuration dependencies and impact to different VMMs must be further analyzed. No networking has impact on how vmd adminvm to host communication is implemented. With no networking, shared memory is proposed. No networking may have impact on how the guest-to-guest inter virtual machine communication configuration must implemented with VMMs. This must be further analyzed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No networking (MH03)","id":"25","title":"No networking (MH03)"},"250":{"body":"certificate authority","breadcrumbs":"Glossary » CA","id":"250","title":"CA"},"251":{"body":"Certificate Management System","breadcrumbs":"Glossary » CMS","id":"251","title":"CMS"},"252":{"body":"Edwards-curve Digital Signature Algorithm","breadcrumbs":"Glossary » EdDSA","id":"252","title":"EdDSA"},"253":{"body":"The GNU Privacy Guard (also GnuPG) is a complete and free implementation of the OpenPGP standard as defined by RFC4880. Source: https://gnupg.org/","breadcrumbs":"Glossary » GPG","id":"253","title":"GPG"},"254":{"body":"A hardware security module is a crypto processor designed for the crypto key lifecycle protection.","breadcrumbs":"Glossary » HSM","id":"254","title":"HSM"},"255":{"body":"Cryptography and SSL/TLS Toolkit. Source: https://www.openssl.org/","breadcrumbs":"Glossary » OpenSSL","id":"255","title":"OpenSSL"},"256":{"body":"A public key infrastructure is the framework of encryption and cybersecurity.","breadcrumbs":"Glossary » PKI","id":"256","title":"PKI"},"257":{"body":"A Python binding to libsodium, which is a fork of the Networking and Cryptography library. Source: https://pypi.org/project/PyNaCl/","breadcrumbs":"Glossary » PyNaCl","id":"257","title":"PyNaCl"},"258":{"body":"registration authority","breadcrumbs":"Glossary » RA","id":"258","title":"RA"},"259":{"body":"A software bill of materials is a machine-readable document of all software components, open source licenses, and dependencies in a target software.","breadcrumbs":"Glossary » SBOM","id":"259","title":"SBOM"},"26":{"body":"Ghaf minimal host profile for release target has no graphics. Graphics will be compartmentalized to GUIVM. All graphics and display output related components and dependencies, including kernel drivers, must be removed from kernel configuration. Those are to be passed through to GUIVM.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No graphics (MH04)","id":"26","title":"No graphics (MH04)"},"260":{"body":"A supply chain security is a process of securing the machinery of the development, building, and release environment.","breadcrumbs":"Glossary » SCS","id":"260","title":"SCS"},"261":{"body":"A security chip that performs encryption and decryption operations.","breadcrumbs":"Glossary » secure cryptoprocessor","id":"261","title":"secure cryptoprocessor"},"262":{"body":"An immutable blob of data; primarily refers to software, but SLSA can be used for any artifact. Source: https://slsa.dev/spec/v0.1/terminology","breadcrumbs":"Glossary » software artifact","id":"262","title":"software artifact"},"263":{"body":"Supply chain Levels for Software Artifacts is a security framework, a check-list of standards and controls to prevent tampering, improve integrity, and secure packages and infrastructure in your projects, businesses or enterprises. Source: https://slsa.dev/","breadcrumbs":"Glossary » SLSA","id":"263","title":"SLSA"},"264":{"body":"Our experience in research, studies and lessons learned activities: i.MX 8QM platform bus ethernet passthrough System installation","breadcrumbs":"Research Notes » Research Notes","id":"264","title":"Research Notes"},"265":{"body":"The i.MX 8QuadMax (i.MX 8QM, iMX8QM, imx8qm) passthrough host setup relies as much as possible on the default i.MX 8QM MEK (imx8qm-mek) device tree configuration. Some guidance on what is required for passthrough to work on i.MX 8 can be found in the XEN device trees. This document provides a detailed description of what has been done and why. For the more impatient readers, the example device tree files for i.MX 8QM guest and host with Ethernet passthrough are available here: Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts NOTE 20.12.2022: At the current state, the passthrough is not completely functional. The Ethernet device (fec1) or even both devices (fec1 and fec2) can be set up in the guest. The devices respond and seem functional, the device node does activate, the drivers load correctly, the power state of the device changes to active, and the link state of the Ethernet connection seems to change correctly. However, for some reason, no actual Ethernet data packages go through the Ethernet adapter. The most visible issue is that no interrupts come to the Ethernet devices. See the following topics: i.MX 8QM Ethernet Passthrough Host Kernel Configuration Host Device Tree Explained Other Notes About Passthrough Changes in U-Boot Running Platform Device Passthrough in QEMU Guest Setup Adding Devices to Guest Some Final Touches for Guest Devices Compiling the Device Tree Source to Binary Form Compiling for Guest Compiling for Host Running QEMU with Passthrough Platform Devices","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » i.MX 8QM Ethernet Passthrough","id":"265","title":"i.MX 8QM Ethernet Passthrough"},"266":{"body":"Kernel version 5.10 was used during the setup. For the passthrough to work, a few kernel configuration options need to be added to the default i.MX 8QM configuration: CONFIG_VFIO_PLATFORM=y CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y CONFIG_VFIO_PLATFORM=y CONFIG_ARM_SMMU_V3_SVA=y","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Kernel Configuration","id":"266","title":"Host Kernel Configuration"},"267":{"body":"The default Freescale i.MX 8QM MEK configuration is included and then updated to get the Ethernet device passthrough configuration added on top of the original device configuration. There are two problems with using the i.MX 8 XEN configuration as a reference. The first issue is that the configuration between XEN and KVM do not map one to one. The second issue is more specific to Ethernet passthrough, as i.MX 8 XEN configuration does not set up passthrough for Ethernet so most of the configuration needs to be figured out from scratch. #include \"freescale/imx8qm-mek.dts\"\n/ { domu { /* * There are 5 MUs, 0A is used by Dom0, 1A is used * by ATF, so for DomU, 2A/3A/4A could be used. * SC_R_MU_0A * SC_R_MU_1A * SC_R_MU_2A * SC_R_MU_3A * SC_R_MU_4A * The rsrcs and pads will be configured by uboot scu_rm cmd */ #address-cells = <1>; #size-cells = <0>; doma { compatible = \"xen,domu\"; /* * The name entry in VM configuration file * needs to be same as here. */ domain_name = \"DomU\"; /* * The reg property will be updated by U-Boot to * reflect the partition id. */ reg = <0>; /* * Initialize and activate the Mailbox MU2A at boot */ init_on_rsrcs = < IMX_SC_R_MU_2A >; /* * Mark the Mailbox and Ethernet adapter power domains available to guest */ rsrcs = < IMX_SC_R_MU_2A IMX_SC_R_ENET_0 >; /* * Mark the pads for ethernet adapter fec1 available to guest */ pads = < IMX8QM_ENET0_MDIO IMX8QM_ENET0_MDC IMX8QM_ENET0_REFCLK_125M_25M IMX8QM_ENET0_RGMII_TXC IMX8QM_ENET0_RGMII_TX_CTL IMX8QM_ENET0_RGMII_TXD0 IMX8QM_ENET0_RGMII_TXD1 IMX8QM_ENET0_RGMII_TXD2 IMX8QM_ENET0_RGMII_TXD3 IMX8QM_ENET0_RGMII_RXC IMX8QM_ENET0_RGMII_RX_CTL IMX8QM_ENET0_RGMII_RXD0 IMX8QM_ENET0_RGMII_RXD1 IMX8QM_ENET0_RGMII_RXD2 IMX8QM_ENET0_RGMII_RXD3 IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETB IMX8QM_SCU_GPIO0_07 IMX8QM_SPI0_CS1 IMX8QM_SPI2_CS1 IMX8QM_SAI1_RXFS IMX8QM_SAI1_RXC >; /* GPIOS as default from imxqm XEN device tree */ gpios = <&lsio_gpio1 13 GPIO_ACTIVE_LOW>, <&lsio_gpio1 19 GPIO_ACTIVE_LOW>, <&lsio_gpio1 27 GPIO_ACTIVE_LOW>, <&lsio_gpio1 28 GPIO_ACTIVE_LOW>, <&lsio_gpio1 30 GPIO_ACTIVE_LOW>, <&lsio_gpio4 1 GPIO_ACTIVE_LOW>, <&lsio_gpio4 3 GPIO_ACTIVE_LOW>, <&lsio_gpio4 6 GPIO_ACTIVE_LOW>, <&lsio_gpio4 9 GPIO_ACTIVE_LOW>, <&lsio_gpio4 11 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 19 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 22 GPIO_ACTIVE_LOW>, <&lsio_gpio4 25 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 26 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 27 GPIO_ACTIVE_LOW>, <&lsio_gpio4 29 GPIO_ACTIVE_LOW>; }; };\n}; /* * Add iommus property for the passed through device nodes to allow setting up vfio * The device type \"compatible\" is changed to prevent the system from loading a * driver the the adapter. * Most other properties are removed from the adapter. */\n&fec1 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ phy-handle; /delete-property/ pinctrl-names; /delete-property/ pinctrl-0;\n}; /* * The device is not being used by guest. Just to make sure it is removed from iommu * group and disabled. */\n&fec2 { /delete-property/ iommus; status = \"disabled\";\n}; /* * Timer device for fec1\n&enet0_lpcg { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ pinctrl-0;\n}; &enet1_lpcg { /delete-property/ iommus; status = \"disabled\";\n}; &lsio_mu2 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\";\n}; /*\n* Remove iommus properties from other devices which are not passed through for Network VM\n*/\n&usdhc1 { /delete-property/ iommus;\n}; &usdhc2 { /delete-property/ iommus;\n}; &usdhc3 { /delete-property/ iommus;\n}; &sata { /delete-property/ iommus;\n}; &usbotg3 { /delete-property/ iommus;\n}; &usbotg3_cdns3 { /delete-property/ iommus;\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Device Tree Explained","id":"267","title":"Host Device Tree Explained"},"268":{"body":"All devices which belong to the same VFIO/IOMMU group need to be passed through to the guest. To prevent the device from being initialized by the host, change the device-compatible property to a dummy such as \"fsl,dummy\". The device status need needs to be \"okay\" for the device node to be available. If U-Boot finds devices that appear in the doma rsrcs that contains the properties listed below, the device will get removed from the DTB: power-domains clocks clock-names assigned-clocks assigned-clock-rates pinctrl-0","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Other Notes About Passthrough","id":"268","title":"Other Notes About Passthrough"},"269":{"body":"In our host device tree, we defined a couple of \"rsrcs\" resources to be handed over to the guest system. The ownership of these registers needs to be transferred to the guest after loading our device tree and before the actual boot. This can be done in U-Boot with a command: scu_rm dtb ${fdt_addr} The easiest way to accomplish this automatically during boot is to add the \"scu_rm\" to the default i.MX 8QM U-Boot \"boot_os\" command and save the changes as below: setenv boot_os 'scu_rm dtb ${fdt_addr}; booti ${loadaddr} - ${fdt_addr};'\nsaveenv","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Changes in U-Boot","id":"269","title":"Changes in U-Boot"},"27":{"body":"Ghaf host in release mode must have no terminals (TTYs) to interact with. In the current state of development, this cannot be enabled yet and has minimum requirement of system logging outside the host. Proposed design to approach this is requirement is to enable getty declaratively only in a debug serial terminal under modules/development .","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No getty (MH05)","id":"27","title":"No getty (MH05)"},"270":{"body":"Before you start QEMU, the passedthrough devices need to be bind to the VFIO driver. In some cases, the default driver needs to be unbind before the device can be bind to VFIO. However, in this case, all devices were changed to use the dummy device type in the device tree, so the step below is not required for this setup. echo 5d1d0000.mailbox > /sys/bus/platform/devices/5d1d0000.mailbox/driver/unbind\necho 5b040000.ethernet > /sys/bus/platform/devices/5b040000.ethernet/driver/unbind\necho 5b230000.clock-controller > /sys/bus/platform/devices/5b230000.clock-controller/driver/unbind The VFIO driver allows user-level access to the devices. Binding required devices to VFIO can be done as below: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After binding the devices to VFIO so it is possible to pass the devices to QEMU using \" -device vfio-platform \" arguments as below. The order in which the device arguments are given to QEMU may have an effect on some device properties such as interrupts. -device vfio-platform,host=5b230000.clock-controller\n-device vfio-platform,host=5b040000.ethernet\n-device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running Platform Device Passthrough in QEMU","id":"270","title":"Running Platform Device Passthrough in QEMU"},"271":{"body":"Before starting the virtual machine with passed-through devices, we need to define our virtual machine device tree. One way of gaining a template for our QEMU device tree is by starting our QEMU instance and requesting a dump of its device tree in the DTB format as below. DTB is a binary format of the device tree so we also need to use the command line tool device tree compiler dtc to convert the binary device tree to a more human-friendly device tree source format. Converting the device tree to source format may give a few warnings of missing or unrecognized properties and such but that is normal. qemu-system-aarch64 \\ -M virt,gic-version=host,dumpdtb=virt.dtb -enable-kvm -nographic # Convert binary to source device tree format\ndtc -I dtb -O dts virt.dtb > virt.dts This will provide a \" virt.dts \" file which can be used as a base for adding our passedthrough devices. The U-Boot device tree may change based on the U-Boot version, so the guest device tree may need some maintenance every now and then.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Guest Setup","id":"271","title":"Guest Setup"},"272":{"body":"The platform devices which are going to get passed through should be added to the QEMU device tree platform bus section. In this case, the main devices are fec1 , enet0_lpcg and lsio_mu2 . At the time of writing, the platform bus address in QEMU is \" c000000 \" but that can be changed within the following code (needs recompiling QEMU) or it might change during some the QEMU code update. platform@c000000 { compatible = \"qemu,platform\\0simple-bus\"; interrupt-parent = <0x8001>; #address-cells = <0x02>; #size-cells = <0x02>; /* Devices register remapping // ranges = <0xc000000 0x00 0xc000000 0x2000000>; ranges = <0x00 0x5b230000 0x00 0xc000000 0x00 0x10000>, <0x00 0x5b040000 0x00 0xc010000 0x00 0x10000>, <0x00 0x5d1d0000 0x00 0xc020000 0x00 0x10000>; /* * Fec1 device configuration * Mostly the same that was set in the original host device configuration * The original interrupts can be left here as reference but they are updated at the end of config */ fec1: ethernet@5b040000 { reg = <0x00 0x5b040000 0x00 0x10000>; interrupts = , , , ; clocks = <&enet0_lpcg 4>, <&enet0_lpcg 2>, <&enet0_lpcg 3>, <&enet0_lpcg 0>, <&enet0_lpcg 1>; clock-names = \"ipg\", \"ahb\", \"enet_clk_ref\", \"ptp\", \"enet_2x_txclk\"; assigned-clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_CLKDIV>; assigned-clock-rates = <250000000>, <125000000>; fsl,num-tx-queues=<1>; fsl,num-rx-queues=<1>; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Fec1 devices clock controller device configuration * Mostly the same that was set in the original host device configuration * The actual clocks are nor configured so those need to be added to guest */ enet0_lpcg: clock-controller@5b230000 { compatible = \"fsl,imx8qxp-lpcg\"; reg = <0x00 0x5b230000 0x00 0x10000>; #clock-cells = <1>; clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&conn_axi_clk>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_TXCLK>, <&conn_ipg_clk>, <&conn_ipg_clk>; bit-offset = <0 4 8 12 16 20>; clock-output-names = \"enet0_lpcg_timer_clk\", \"enet0_lpcg_txc_sampling_clk\", \"enet0_lpcg_ahb_clk\", \"enet0_lpcg_rgmii_txc_clk\", \"enet0_lpcg_ipg_clk\", \"enet0_lpcg_ipg_s_clk\"; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Mailbox device for Fec1 (and SCU) * The host needs its own Mailbox (lsio_mu1 by default) and SCU * The original interrupt can be left here as reference but that is updated at the end of config */ lsio_mu2: mailbox@5d1d0000 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; reg = <0x00 0x5d1d0000 0x00 0x10000>; interrupts = ; #mbox-cells = <0x02>; status = \"okay\"; };\n}; The actual devices which were passed through may have some dependencies (such as clocks) which also need to be configured in the guest for the main devices to work properly. In most cases, they can be just copy-pasted from the original host configuration with a few minor alterations. Required dependencies need a bit of manual labor and depend on case to case. The main key is to go through the whole original device tree and list out device node names that are used by the passedthrough devices. This may require several passes as the dependencies may also contain some dependencies of their own. On top of the requirements, it is good also to check if the passedthrough devices are used by some other devices. Some devices may be used through a controller, such as lsio_mu2 is used by the main system control unit scu . In this case, the dependencies consist of several clock devices and their controller and also the i.MX 8 system control unit SCU device with its internals. The assisting devices can be added just before the start \" platform@c000000 \" bus configuration section: /** * Several clocks and a regulator copied from original host config. **/\nclk_dummy: clock-dummy { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <0>; clock-output-names = \"clk_dummy\";\n}; xtal32k: clock-xtal32k { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <32768>; clock-output-names = \"xtal_32KHz\";\n}; xtal24m: clock-xtal24m { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <24000000>; clock-output-names = \"xtal_24MHz\";\n}; reg_fec2_supply: fec2_nvcc { compatible = \"regulator-fixed\"; regulator-name = \"fec2_nvcc\"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>;\n//\tgpio = <&max7322 0 GPIO_ACTIVE_HIGH>; enable-active-high; status = \"okay\";\n}; conn_axi_clk: clock-conn-axi { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <333333333>; clock-output-names = \"conn_axi_clk\";\n}; conn_ahb_clk: clock-conn-ahb { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <166666666>; clock-output-names = \"conn_ahb_clk\";\n}; conn_ipg_clk: clock-conn-ipg { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <83333333>; clock-output-names = \"conn_ipg_clk\";\n}; conn_bch_clk: clock-conn-bch { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <400000000>; clock-output-names = \"conn_bch_clk\";\n}; /** * imx8 SCU device and its content with changed to use \"lsio_mu2\" mailbox * The original scu used lsio_mu1 so we need to use one of lsio_mu2 to lsio_mu4 **/\nscu { compatible = \"fsl,imx-scu\"; mbox-names = \"tx0\", \"rx0\", \"gip3\"; mboxes = <&lsio_mu2 0 0 &lsio_mu2 1 0 &lsio_mu2 3 3>; pd: imx8qx-pd { compatible = \"fsl,imx8qm-scu-pd\", \"fsl,scu-pd\"; #power-domain-cells = <1>; status = \"okay\"; wakeup-irq = <235 236 237 258 262 267 271 345 346 347 348>; }; clk: clock-controller { compatible = \"fsl,imx8qm-clk\", \"fsl,scu-clk\"; #clock-cells = <2>; clocks = <&xtal32k &xtal24m>; clock-names = \"xtal_32KHz\", \"xtal_24Mhz\"; }; iomuxc: pinctrl { compatible = \"fsl,imx8qm-iomuxc\"; }; ocotp: imx8qm-ocotp { compatible = \"fsl,imx8qm-scu-ocotp\"; #address-cells = <1>; #size-cells = <1>; read-only; fec_mac0: mac@1c4 { reg = <0x1c4 6>; }; fec_mac1: mac@1c6 { reg = <0x1c6 6>; }; }; rtc: rtc { compatible = \"fsl,imx8qm-sc-rtc\"; }; watchdog { compatible = \"fsl,imx8qm-sc-wdt\", \"fsl,imx-sc-wdt\"; timeout-sec = <60>; }; tsens: thermal-sensor { compatible = \"fsl,imx-sc-thermal\"; tsens-num = <6>; #thermal-sensor-cells = <1>; };\n}; /** * And the platform bus that was done earlier would start from here.. */\nplatform@c000000 { ...\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Adding Devices to Guest","id":"272","title":"Adding Devices to Guest"},"273":{"body":"Now we have most of the actual devices setup. Some final modifications for individual devices can be done at the end of the guest device tree configuration. These can be done outside the main node, as we just modify some node properties which are already defined. /** * For fec1 we need to update the interrupts to match the ones used by guest pass-through. * Most of the configuration is exactly the same that was set original imx8 config * Qemu starts its pass-through interrupts at 0x70 so lets change that * It is not strictly required to remove the possible iommus property but lets do that anyway */\n&fec1 { compatible = \"fsl,imx8qm-fec\", \"fsl,imx6sx-fec\"; interrupts = , , , ; /delete-property/ iommus; pinctrl-names = \"default\"; pinctrl-0 = <&pinctrl_fec1>; phy-mode = \"rgmii-txid\"; phy-handle = <ðphy0>; fsl,magic-packet; nvmem-cells = <&fec_mac0>; nvmem-cell-names = \"mac-address\"; status = \"okay\"; mdio { #address-cells = <1>; #size-cells = <0>; ethphy0: ethernet-phy@0 { compatible = \"ethernet-phy-ieee802.3-c22\"; reg = <0>; at803x,eee-disabled; at803x,vddio-1p8v; qca,disable-smarteee; vddio-supply = <&vddio0>; vddio0: vddio-regulator { regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; }; }; };\n}; /** * Not much to do for clock controller * Remove the iommus as it is not needed in guest and turn the device on */\n&enet0_lpcg { status = \"okay\"; /delete-property/ iommus;\n}; /** * Same for our mailbox * Update the interrupts to match next available interrupt in Qemu */\n&lsio_mu2 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; interrupts = ; /delete-property/ iommus; status = \"okay\";\n}; /** * In the host devicetree we had some pads which were transferred to guest. * There can be found in the original imx8 hosts config. **/\n&iomuxc { pinctrl-names = \"default\"; status = \"okay\"; pinctrl_fec1: fec1grp { fsl,pins = < IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETA_PAD 0x000014a0 IMX8QM_ENET0_MDC_CONN_ENET0_MDC 0x06000020 IMX8QM_ENET0_MDIO_CONN_ENET0_MDIO 0x06000020 IMX8QM_ENET0_RGMII_TX_CTL_CONN_ENET0_RGMII_TX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_TXC_CONN_ENET0_RGMII_TXC 0x06000020 IMX8QM_ENET0_RGMII_TXD0_CONN_ENET0_RGMII_TXD0 0x06000020 IMX8QM_ENET0_RGMII_TXD1_CONN_ENET0_RGMII_TXD1 0x06000020 IMX8QM_ENET0_RGMII_TXD2_CONN_ENET0_RGMII_TXD2 0x06000020 IMX8QM_ENET0_RGMII_TXD3_CONN_ENET0_RGMII_TXD3 0x06000020 IMX8QM_ENET0_RGMII_RXC_CONN_ENET0_RGMII_RXC 0x06000020 IMX8QM_ENET0_RGMII_RX_CTL_CONN_ENET0_RGMII_RX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_RXD0_CONN_ENET0_RGMII_RXD0 0x06000020 IMX8QM_ENET0_RGMII_RXD1_CONN_ENET0_RGMII_RXD1 0x06000020 IMX8QM_ENET0_RGMII_RXD2_CONN_ENET0_RGMII_RXD2 0x06000020 IMX8QM_ENET0_RGMII_RXD3_CONN_ENET0_RGMII_RXD3 0x06000020 >; };\n}; With our additional devices also some headers and definitions need to be included at the beginning of the device tree. These additions can be found also from the original i.MX 8 device tree files. See the full device tree below for reference.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Some Final Touches for Guest Devices","id":"273","title":"Some Final Touches for Guest Devices"},"274":{"body":"The device trees need to be compiled within the Linux kernel source directory. They depend on some kernel device tree headers and in the host device case—other device tree source files. Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling the Device Tree Source to Binary Form","id":"274","title":"Compiling the Device Tree Source to Binary Form"},"275":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-guest.dts imx8qm-mek_conn-guest.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-guest.preprocessed -o imx8qm-mek_conn-guest.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Guest","id":"275","title":"Compiling for Guest"},"276":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-host.dts imx8qm-mek_conn-host.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-host.preprocessed -o imx8qm-mek_conn-host.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Host","id":"276","title":"Compiling for Host"},"277":{"body":"To get passthrough working, i.MX 8 QM needs to be booted using our freshly built hosts imx8qm-mek_conn-host.dtb device tree file. When the system has booted, we need to set up the passedthrough devices for the VFIO driver and start QEMU with devices passed through. First, the devices need to be setup for VFIO: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After, QEMU can be started with our devices over the devices. This is just as an example. It may require a bit of change in other environments. In this example, the guest kernel image—ext2 rootfs and guest device tree—all use the same filename prefix imx8qm-mek_conn-guest . qemu-system-aarch64 \\ -M virt,gic-version=host -enable-kvm \\ -cpu host \\ -m 512M \\ -kernel \"imx8qm-mek_conn-guest.Image\" \\ -drive file=\"imx8qm-mek_conn-guest.ext2\",if=virtio,format=raw -dtb \"imx8qm-mek_conn-guest.dtb\" \\ -nographic \\ -append \"loglevel=7 rootwait root=/dev/vda console=ttyAMA0 earlycon earlyprintk\" \\ -device vfio-platform,host=5b230000.clock-controller \\ -device vfio-platform,host=5b040000.ethernet \\ -device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running QEMU with Passthrough Platform Devices","id":"277","title":"Running QEMU with Passthrough Platform Devices"},"278":{"body":"A hardened system installation covers multiple phases from establishing trust to the installation process. This section describes developing mechanisms to set up a Ghaf system in target hardware.","breadcrumbs":"Research Notes » System Installation » Approaches to Ghaf System Installation","id":"278","title":"Approaches to Ghaf System Installation"},"279":{"body":"The initial Ghaf installation approach to using Ghaf in development and demos is to build target system raw images (img) as binary disk images. The process results in an image based on modular and configurable declarations that are repeatably built using NixOS tooling. In practice, Ghaf disk images are built with: nix build .#package.. which results in disk image: result\\nixos.img For information on how to build and run a Ghaf image, see Build & Run for details. The initial Ghaf installation approach differed from the NixOS installation approach: The key reason in Ghaf was practical: initially, it is simple to write a specific target disk image to a USB boot media or target HW internal persistent media. The NixOS approach is more generic: supporting as many devices as possible. Similar to other Linux distributions like Ubuntu or Fedora. The development objective of Ghaf is to support a portable secure system that results in a target device-specific small trusted computing base. In practice, this means that Ghaf installations are by design not meant to support a generic Linux kernel with about all the device drivers (modules) out there like Ubuntu or Fedora. Ghaf reference installations are designed and to be developed to support particular (declaratively) hardened host and guest kernels with limited drivers only. The Ghaf approach significantly reduces the size of the trusted computing base as the unneeded modules and kernel parts are not taken into use.","breadcrumbs":"Research Notes » System Installation » Ghaf Initial Approach","id":"279","title":"Ghaf Initial Approach"},"28":{"body":"Ghaf host in release mode has no nix tooling to work with the /nix/store. The /nix/store is only used to build the host system. In release mode, no modifications to nix store are possible. Changes are handled with update (MH08). Ghaf host in debug mode must support nix tooling via read-writable host filesystem. This must be taken into account in build-time nix module declarations.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No nix toolings (MH06)","id":"28","title":"No nix toolings (MH06)"},"280":{"body":"NixOS installation is well documented and thus is only summarized here. The key in the NixOS approach is to have a generic, bootable installation media (iso) like any other Linux distribution. As the NixOS installer aims to support as many devices as possible: the installer has a generic kernel (per hardware architecture), hardware recognition script, and generic requirements for system partitioning (boot and root partitions). Much of the NixOS installation can be modified interactively during installation either from a graphical installer, manually, or even declaratively. After installation, the whole system can be managed fully declaratively and purely (flakes) which is a novel approach compared to other Linux distributions. In practice, you can store your target system declaration in version control (git) to both maintain the system setup and back it up. Ghaf uses this approach for reference system declarations with flake.nix . NixOS usage is popular in cloud system installations. However many cloud providers do not provide NixOS as an option and bare-metal cloud is always not an alternative. For this need, approaches like nixos-anywhere have been developed. Using a smart approach with kexec , one can completely replace cloud provider default Linux options.","breadcrumbs":"Research Notes » System Installation » NixOS Approach","id":"280","title":"NixOS Approach"},"281":{"body":"Ghaf introduced a modular structure for an interactive installer . The initial Ghaf reference installer still uses a raw disk image per target device. In practice, it just writes the raw disk image to the target device's internal persistent memory, for example, NVMe. The key idea with the modular interactive Ghaf installer is to enable customization of the installer per target device needs and at the same time support further development of the Ghaf graphical installer. The challenge with the interactive installer is to determine the combination of configurable options, to develop, and test them. Given the Ghaf approach of target device-specific installation Ghaf Initial Approach , the requirement for Ghaf a device-specific installer is challenging. Ghaf installer would have to either: embed the device-specific installation raw disk image in the installer (current way) which results in a huge installer image dynamically build the device-specific installation according to the user's interactive selection download a pre-built device-specific raw disk image which could result in a huge number of configurations use some combination of generic and specific (a compromise) None of which seem feasible in the long run. None of these are either Ghaf's objectives in the long run either. But how to achieve a device-specific secure system installation without getting lost in the generic Linux distro requirements?","breadcrumbs":"Research Notes » System Installation » Modular Interactive","id":"281","title":"Modular Interactive"},"282":{"body":"Now that we already have version control reference device-specific secure system declarations, the question is if we can transfer those into the device installations without requiring a user too many actions that make the installation unnecessarily difficult to implement. This alone is not a novel idea. Automatic Original Equipment Manufacturer (OEM) installers have been doing this for long. Those are often not declarative but rather scripted guidance to answer questions in generic installers. The target device-specific disk partitioning has been left to the user in manual installation. Traditionally in generic installers, it is also risk management. A user typically might not want her device disk wiped out without questions asked. Of course, we could let the user know what is about to happen and ask the user for agreement in confirmation before we install it fully automatically. Declarative configurations can handle user preferences. If one wants to change something, it can be changed in the declarations, stored, and shared via version control. Also including the declarative partitioning that has been tested from within the Ghaf installer. So, according to the We don't need NixOS cloud images anymore article, one can think that a secure, virtualized edge device could be handled similarly to cloud images. A simple (even secure) boot and installation supporting media could provide secure network access to the installation target device and then deploy the specific installation from declarations. In practice, a target device can be booted with a USB media (or even network boot) that provides SSH access to the device using an authorized key. After that, one command can be used to install specific secure system configuration automatically. This is used in Ghaf updates in development with nixos-rebuild ... switch and was also tested with new (clean) systems .","breadcrumbs":"Research Notes » System Installation » Declarative, Non-Interactive Installation","id":"282","title":"Declarative, Non-Interactive Installation"},"283":{"body":"As of now, the proposed approach declarative non-interactive approach using the example tooling depends on Internet access. Secure system installation will require steps additional to functional system setup. For example, establishing trust and setting up secrets. Many guidelines instruct to setup secrets in an air-gapped environment (without network access) for a reason. Above mentioned tools do not yet support offline installation .","breadcrumbs":"Research Notes » System Installation » Discussion","id":"283","title":"Discussion"},"29":{"body":"Ghaf host release mode kernel configuration must be minimal and hardened in the limits of HW vendor BSP. Kernel configuration per device is to be further analyzed iteratively. Limitations are to be documented per target device kernel configurations and HW support for virtualization.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal defconfig (MH07)","id":"29","title":"Minimal defconfig (MH07)"},"3":{"body":"The design principles influencing the architecture of the Ghaf Platform are the following: Edge security The Ghaf security architecture under development by SSRC aims to provide an understandable yet comprehensive view of security controls in the Platform so that vendors can make informed decisions and adopt the Platform for their use cases. The security architecture and subsequent research will be published by SSRC in a series of technical white papers. Zero trust The Ghaf Platform aims to apply the general security principles of zero trust within the software architecture and to act as an enabler for ZTA for edge devices within organizations. Trusted computing base The general principle for establishing the trusted Ghaf Platform code base is to rely on audited software and proven security modules while carefully evaluating and integrating new concepts. The modularized platform not only simplifies the integration of additional security measures but also facilitates the integration of hardware security features. Leveraging and contributing to open-source projects is not only a cornerstone for the Platform components' maintainability but also for the toolchain to increase transparency and auditability. By providing a hardened code base for the hypervisor and OS for the various VMs in the architecture, the Ghaf Platform leverages security benefits across all modules. Configurable, declarative and reproducible","breadcrumbs":"About Ghaf » Design Principles","id":"3","title":"Design Principles"},"30":{"body":"Ghaf host release mode filesystem updates are to be implemented using A/B update mechanism from adminvm. This will be designed and covered in a separate ADR.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Update via adminvm (MH08)","id":"30","title":"Update via adminvm (MH08)"},"31":{"body":"Ghaf minimal host in release mode must be implemented with read-only, integrity checked (dm-verity) filesystem.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Read-only filesystem (MH09)","id":"31","title":"Read-only filesystem (MH09)"},"32":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » netvm—Networking Virtual Machine","id":"32","title":"netvm—Networking Virtual Machine"},"33":{"body":"Proposed, partially implemented for development and testing. netvm reference declaration is available at netvm/default.nix .","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Status","id":"33","title":"Status"},"34":{"body":"Ghaf high-level design target is to secure a monolithic OS by modularizing the OS to networked VMs. The key security target is to not expose the trusted host directly to the Internet. This isolates the attack surface from the Internet to netvm . The following context diagram illustrates development and secure scenarios: Scope! Left : An insecure development scenario. The host is directly connected to the Internet, and the network is bridged from the host to other parts of the system. Right : A secure scenario. The network is passed through to netvm and routed to other parts of the system.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Context","id":"34","title":"Context"},"35":{"body":"The development scenario simplifies the target system network access and configuration. This ADR proposes the development netvm configuration is maintained to support system development. The secure scenario is proposed to be implemented with the use of passthrough to DMA and remap the host physical network interface card (PHY NIC) to netvm . This cannot be generalized for all hardware targets as it requires: Low-level device tree configuration for bootloader and host (at least on platform NIC). VMM host user space NIC bus mapping from the host to netvm . Native network interface driver (not virtual) in netvm . Native driver is bound the vendor BSP supported kernel version. These depend on the hardware setup. The proposed target setup is that the passthrough network device(s) are implemented as declarative nix-modules for easier user hardware-specific configuration. In practice, a user may configure the declaration of a PCI or USB network card that is available to the available hardware setup. netvm will provide: dynamic network configuration: A DHCP server for netvm to provide IP addresses for the other parts of the system, both static and dynamic. Routing from netvm to the Internet and/or inter VM. For common reference hardware with platform NIC, the configured modules for network interface passthrough are provided. For more information, see i.MX 8QM Ethernet Passthrough . Details of other network components, such as default firewall rules, DHCP (static and dynamic client addresses), routing, reverse proxies and security monitoring are to be described in their respective architecture decision records. In this context, these are illustrated in the context diagram on the right side of the netvm network interface driver.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Decision","id":"35","title":"Decision"},"36":{"body":"Isolating the attack surface from the host to networking-specific guest VM makes it easier to protect the critical host system from compromise. The isolation also makes it easier to deploy further security, such as a zero trust policy engine or intrusion detection system (IDS). Isolation makes configuration and comprehension of the system more difficult.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Consequences","id":"36","title":"Consequences"},"37":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » rust-vmm—Bus Passthrough Support for Rust VMMs","id":"37","title":"rust-vmm—Bus Passthrough Support for Rust VMMs"},"38":{"body":"Proposed, work in progress.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Status","id":"38","title":"Status"},"39":{"body":"This ADR is a work-in-progress note for Ghaf bus passthrough implementation that will support rust-vmm-based hypervisors. rust-vmm is an open-source project that empowers the community to build custom Virtual Machine Monitors (VMMs) and hypervisors. For more information, see https://github.com/rust-vmm/community . It is crucial to have bus devices passthrough support for ARM-based hardware as the bus is mainly used to connect the peripherals. Nowadays, the only hypervisor with some support for Platform bus is QEMU but the code is dated 2013 and not frequently used. On the other hand, one of the target hardware devices for Ghaf is NVIDIA Orin with an ARM core. To achieve Ghaf's security and hardware isolation goals, devices should support passthrough mode. Production-ready rust-vmm-based hypervisors ( crosvm , Firecracker , Cloud Hypervisor ) do not have support for Platform bus.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Context","id":"39","title":"Context"},"4":{"body":"As software supply chain security becomes more and more relevant to product security, it is necessary to provide mechanisms to assert reproducible builds, with a transparent chain from source code over the build environment to the final binaries. Such a system allows faster analysis of not only software bugs but also security vulnerabilities and their impact on a product without the need for extensive analysis. This approach further reduces the efforts required for patching and allows mechanisms for safe fallbacks to secure states. For more information on Ghaf supply chain security, see Supply Chain Security .","breadcrumbs":"About Ghaf » Build System and Supply Chain","id":"4","title":"Build System and Supply Chain"},"40":{"body":"Implementation of Platform bus passthrough is a base framework for Rust VMM. This will make it possible to use this mode within production-ready rust-vmm-based hypervisors. The main candidate here is crosvm. The necessity to support Platform bus in other hypervisors is subject to discussion. Technically, the Platform bus is rather a simple bus: it manages memory mapping and interrupts. Information about devices is not dynamic but is read from the device tree during the boot stage. The current status: Required Components Status of Readiness Host kernel side: VFIO drivers (to substitute real driver in host kernel) -/+ Host support for device trees + Guest kernel side: Device drivers for passthrough devices + Guest support for device trees + Rust VMM side: Bus support Needs to be developed. VMM support for device trees Rudimental, needs improvement.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Decision","id":"40","title":"Decision"},"41":{"body":"This section describes how securing Ghaf by reducing its attack surface—hardening—is done.","breadcrumbs":"Architecture » Hardening » Hardening","id":"41","title":"Hardening"},"42":{"body":"Ghaf has two types of kernels: host and guest. Hardening of these kernels varies in terms of hardware support and functionality required by the guest kernel in question. Within this context, the kernel always refers to the Linux operating system kernel.","breadcrumbs":"Architecture » Hardening » Kernel","id":"42","title":"Kernel"},"43":{"body":"NixOS provides several mechanisms to customize the kernel. The main methods are: Declaring kernel command line parameters : usage in Ghaf . Declaring kernel custom configuration : usage in Ghaf . Example of entering the kernel development shell to customize the .config and build it: ~/ghaf $ nix develop .#devShells.x86_64-linux.kernel-x86\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ cp ../modules/host/ghaf_host_hardened_baseline .config\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make menuconfig\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make -j$(nproc)\n...\nKernel: arch/x86/boot/bzImage Booting the built kernel with QEMU: [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ qemu-system-x86_64 -kernel arch/x86/boot/bzImage Validating with kernel hardening checker : [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline\n[+] Kconfig file to check: ../modules/host/ghaf_host_hardened_baseline\n[+] Detected microarchitecture: X86_64\n[+] Detected kernel version: 6.6\n[+] Detected compiler: GCC 120300\n...\n[+] Config check is finished: 'OK' - 188 / 'FAIL' - 5\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline|grep 'FAIL: '\nCONFIG_CFI_CLANG |kconfig| y | kspp | self_protection | FAIL: is not found\nCONFIG_CFI_PERMISSIVE |kconfig| is not set | kspp | self_protection | FAIL: CONFIG_CFI_CLANG is not \"y\"\nCONFIG_MODULES |kconfig| is not set | kspp |cut_attack_surface| FAIL: \"y\"\nCONFIG_FB |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"\nCONFIG_VT |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"","breadcrumbs":"Architecture » Hardening » Kernel Hardening Process","id":"43","title":"Kernel Hardening Process"},"44":{"body":"The host kernel runs on bare metal. The kernel is provided either with Linux upstream (x86_64) or with vendor BSP. The default Ghaf host kernel on x86_64 is maintained by Ghaf upstream package sources nixpkgs or Nix-packaged hardware-specific BSP (for example, NVIDIA Jetson-family of devices). x86-64-linux The host kernel hardening is based on Linux make tinyconfig. The default tinyconfig fails to assertions on NixOS without modifications. Assertions are fixed in ghaf_host_hardened_baseline Linux configuration under Ghaf modules/host/. In addition, NixOS (Ghaf baseline dependency) requires several kernel modules that are added to the config or ignored with allowMissing = true. As of now, the kernel builds and early boots on Lenovo X1.","breadcrumbs":"Architecture » Hardening » Host Kernel","id":"44","title":"Host Kernel"},"45":{"body":"This section describes Secure Boot and how to create secure keys. The reader is expected to know the fundamentals of UEFI and have a basic understanding of Secure Boot UEFI specification .","breadcrumbs":"Architecture » Secure Boot » Secure Boot","id":"45","title":"Secure Boot"},"46":{"body":"Secure Boot can be enabled on NixOS using Lanzaboote . Secure Boot is a UEFI feature that only allows trusted operating systems to boot. Lanzaboote has two components: lzbt and stub. lzbt signs and installs the boot files on the ESP. stub is a UEFI application that loads the kernel and initrd from the ESP.","breadcrumbs":"Architecture » Secure Boot » Enabling Secure Boot","id":"46","title":"Enabling Secure Boot"},"47":{"body":"Secure Boot keys can be created with sbctl , a Secure Boot Manager. sbctl is available in Nixpkgs as pkgs.sbctl. After you installed sbctl or entered a Nix shell, use the following command to create your Secure Boot keys: $ sudo sbctl create-keys Using \"sudo sbctl create-keys\" command user can create secure keys on the trusted system.","breadcrumbs":"Architecture » Secure Boot » Creating Secure Boot Keys","id":"47","title":"Creating Secure Boot Keys"},"48":{"body":"For demonstration purposes, we use pre-generated secure keys which are unsecure as whoever has keys can break into the system. Currently, the Secure Boot feature is enabled in debug builds only, since secure key creation requires sudo rights.","breadcrumbs":"Architecture » Secure Boot » Current Implementation","id":"48","title":"Current Implementation"},"49":{"body":"For enabling secure boot instructions, see the Part 2: Enabling Secure Boot section of the NixOS Secure Boot Quick Start Guide. Make sure your Secure Boot is enabled from the BIOS menu. Once you boot your system with Secure Boot enabled, enroll keys with the following command: $ sudo sbctl enroll-keys --microsoft Reboot the system to activate Secure Boot in the user mode: $ bootctl status\nSystem: Firmware: UEFI 2.70 (Lenovo 0.4720) Firmware Arch: x64 Secure Boot: enabled (user) TPM2 Support: yes Boot into FW: supported","breadcrumbs":"Architecture » Secure Boot » Secure Boot Verification","id":"49","title":"Secure Boot Verification"},"5":{"body":"The vision for the Ghaf platform is to create a virtualized, scalable reference platform that enables the building of secure products leveraging trusted, reusable, and portable software for edge devices. For more information on reference implementation for several devices, see Reference Implementations . Ghaf demo desktop and applications are illustrated in the screen capture below: Ghaf demo desktop and application","breadcrumbs":"Features » Features","id":"5","title":"Features"},"50":{"body":"The Ghaf stack includes a host with VMs. The host consists of two layers—OS kernel with hypervisor and OS user space—and provides virtualization for the guest VMs: system VMs, application or service VMs, or guest OSs. The stack layers and top-level components are illustrated in the following diagram. Stack! At the lowest levels of the stack lay hardware vendor-provided hardware, firmware, and board support package. The Ghaf project aims to use the vendor-provided components either as they are or configure them as supported by the vendor. Configuration may include, for example, host kernel hardening and including only selected components from the vendor BSP. The Ghaf project provides the reference minimal host with user space as defined in the Minimal Host .","breadcrumbs":"Architecture » Stack » Stack","id":"50","title":"Stack"},"51":{"body":"Ghaf provides reference system VMs for networking, GUI and storage. System VM Defined Implementation Status Networking Yes Partial GUI (optional) No Reference Wayland on host, to be isolated to VM GUI VM is considered optional as it may not be needed in some headless configurations.","breadcrumbs":"Architecture » Stack » System VMs","id":"51","title":"System VMs"},"52":{"body":"Ghaf should provide reference application VMs and service VMs that isolate respective software from the host. Depending on the use case requirements, these VMs will communicate with other parts of the system over networking and shared memory. As an example, application VMs (Wayland client) will communicate with the GUI VM (Wayland compositor) across the VM boundaries. This is called cross-domain Wayland. Another, already partially implemented area is networking VM that will securely provide Internet access to other VMs.","breadcrumbs":"Architecture » Stack » Application or Service VM","id":"52","title":"Application or Service VM"},"53":{"body":"Ghaf aims to support users with guest OSs such as other Linux distributions (Ubuntu, Fedora, etc.), Windows, and Android. Some of these have been already prototyped.","breadcrumbs":"Architecture » Stack » Guest OSs","id":"53","title":"Guest OSs"},"54":{"body":"Improvements to code and documentation are welcome! We would love to get contributions from you. For more information, see CONTRIBUTING.md . Some things that will increase the chance that your pull request is accepted faster: Spelling tools usage. Following our Style Guide . Writing a good commit message .","breadcrumbs":"Contributing » Contribution Guidelines","id":"54","title":"Contribution Guidelines"},"55":{"body":"Our hardened OS targets are build configurations based on NixOS. The canonical URL for the upstream Nix git repository is: https://github.com/NixOS . Build configurations define our dependencies and configuration changes to packages and build mechanisms of NixOS. If you want to try Ghaf, see Build and Run .","breadcrumbs":"Reference Implementations » Reference Implementations","id":"55","title":"Reference Implementations"},"56":{"body":"A build configuration is a target to build the hardened OS for a particular hardware device. Most packages used in a build configuration come from nixpkgs—NixOS Packages collection . The upstream first approach means we aim the fix issues by contributing to nixpkgs. At the same time, we get the maintenance support of NixOS community and the benefits of the Nix language on how to build packages and track the origins of packages in the software supply chain security. For more information, see Supply Chain Security . NixOS, a Linux OS distribution packaged with Nix, provides us with: generic hardware architecture support (x86-64 and AArch64) declarative and modular mechanism to describe the system Nix packaging language mechanisms: to extend and change packages with overlays to override packages Even when unmodified upstream is often preferred, even ideal, to ensure timely security updates from upstream—customizations are sometimes required.","breadcrumbs":"Reference Implementations » Approach","id":"56","title":"Approach"},"57":{"body":"To support a reference board without a vendor board support package (BSP)—bootloader, kernel, device drivers—is often not feasible. With this approach, we can overlay the generic NixOS Linux kernel with the vendor kernel and add a vendor bootloader to build a target image. Often the vendor BSPs are also open source but sometimes contain unfree binary blobs from the vendor's hardware. Those are handled by allowing unfree - if the user agrees with the end-user license agreement (EULA). If not, unfree support can be dropped along with that part of the BSP support. The same goes with the architectural variants as headless devices or end-user devices differ in terms what kind of virtual machines (VM) they contain. The user needs graphics architecture and VM support for the user interface (UI) whereas a headless device is more like a small server without the UI.","breadcrumbs":"Reference Implementations » Example","id":"57","title":"Example"},"58":{"body":"Development Build and Run Installer Cross-Compilation Creating Application VM Ghaf as Library: Templates Example Project Modules Options","breadcrumbs":"Reference Implementations » In This Chapter","id":"58","title":"In This Chapter"},"59":{"body":"Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress: Build and Run Running Remote Build on NixOS Installer Cross-Compilation Creating Application VM labwc Desktop Environment Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix . If you authorize your development SSH keys in the ssh.nix module and rebuild Ghaf for your target device, you can use nixos-rebuild switch to quickly deploy your configuration changes to the target device over the network using SSH. For example: nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@ --fast switch\n...\nnixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@ --fast switch\n... With the -debug targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access. Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines .","breadcrumbs":"Reference Implementations » Development » Development","id":"59","title":"Development"},"6":{"body":"✅—integrated and tested in the main branch. No known regression. 🚧—prototyped or work in progress in the development branch. ❌—the feature has known regression or bugs.","breadcrumbs":"Features » Status","id":"6","title":"Status"},"60":{"body":"This tutorial assumes that you already have basic git experience. The canonical URL for the upstream Ghaf git repository is https://github.com/tiiuae/ghaf . To try Ghaf, you can build it from the source. Cross-compilation support is currently under development and not available for the building process.","breadcrumbs":"Reference Implementations » Development » Build and Run » Build and Run","id":"60","title":"Build and Run"},"61":{"body":"First, follow the basic device-independent steps: Clone the git repository https://github.com/tiiuae/ghaf . Ghaf uses a Nix flake approach to build the framework targets, make sure to: Install Nix or full NixOS if needed: https://nixos.org/download.html . Enable flakes: https://nixos.wiki/wiki/Flakes#Enable_flakes . To see all Ghaf-supported outputs, type nix flake show. Set up an AArch64 remote builder: https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html . Then you can use one of the following instructions for the supported targets: Device Architecture Instruction Virtual Machine x86_64 Running Ghaf Image for x86 VM (ghaf-host) Generic x86 Сomputer x86_64 Running Ghaf Image for x86 Computer Lenovo X1 Carbon Gen 11 x86_64 Running Ghaf Image for Lenovo X1 NVIDIA Jetson AGX Orin AArch64 Ghaf Image for NVIDIA Jetson Orin AGX NXP i.MX 8QM-MEK AArch64 Building Ghaf Image for NXP i.MX 8QM-MEK MICROCHIP icicle-kit RISCV64 Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Reference Implementations » Development » Build and Run » Prerequisites","id":"61","title":"Prerequisites"},"62":{"body":"Before you begin, check device-independent prerequisites . From the ghaf source directory, run the nix run .#packages.x86_64-linux.vm-debug command. This creates ghaf-host.qcow2 copy-on-write overlay disk image in your current directory. If you do unclean shutdown for the QEMU VM, you might get weird errors the next time you boot. Simply removing ghaf-host.qcow2 should be enough. To cleanly shut down the VM, from the menu bar of the QEMU Window, click Machine and then Power Down.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 VM (ghaf-host)","id":"62","title":"Running Ghaf Image for x86 VM (ghaf-host)"},"63":{"body":"Before you begin, check device-independent prerequisites . Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#generic-x86_64-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 Computer","id":"63","title":"Running Ghaf Image for x86 Computer"},"64":{"body":"Lenovo X1 is the reference x86_64 device for the Ghaf project. Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#lenovo-x1-carbon-gen11-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for Lenovo X1","id":"64","title":"Running Ghaf Image for Lenovo X1"},"65":{"body":"Before you begin: Check device-independent prerequisites . If you use a new device, flash bootloader firmware first. Then you can build and run a Ghaf image . Flashing NVIDIA Jetson Orin AGX Run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug-flash-script It will build the Ghaf image and bootloader firmware, and prepare the flashing script. Give \"yes\" answers to all script questions. The building process takes around 1,5 hours. Set up the following connections: Connect the board to a power supply with a USB-C cable. Connect a Linux laptop to the board with the USB-C cable. Connect the Linux laptop to the board with a Micro-USB cable to use serial interface . For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. After the build is completed, put the board in recovery mode. For more information, see the Force Recovery Mode section in the Jetson AGX Orin Developer Kit User Guide. Run the flashing script: sudo ~/result/bin/flash-ghaf-host There is a time-out for this operation, so run the script within one minute after putting the device in recovery mode. If you got the error message \"ERROR: might be timeout in USB write.\": Reboot the device and put it in recovery mode again. Check with the lsusb command if your computer can still recognize the board, and run the flash script again. Restart the device after flashing is done. Building and Running Ghaf Image for NVIDIA Jetson Orin AGX After the latest firmware is flashed , it is possible to use a simplified process by building only the Ghaf disk image and running it from external media: To build the target image, run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the hardware from the USB media. In the current state of Ghaf, it is a bit tricky to make NVIDIA Jetson Orin AGX boot Ghaf from a USB if the same thing has already been flashed on the boards's eMMC. To succeed, you can change partition labels on eMMC (or optionally wiping everything away by formatting): Log in as a root: sudo su Check the current labels: lsblk -o name,path,fstype,mountpoint,label,size,uuid Change the ext4 partition label: e2label /dev/mmcblk0p1 nixos_emmc Change the vfat partition label: dosfslabel /dev/mmcblk0p2 ESP_EMMC Verify the labels that were changed: lsblk -o name,path,fstype,mountpoint,label,size,uuid After these changes NVIDIA Jetson Orin AGX cannot boot from its internal eMMC. It will boot from the USB device with the correct partition labels.","breadcrumbs":"Reference Implementations » Development » Build and Run » Ghaf Image for NVIDIA Jetson Orin AGX","id":"65","title":"Ghaf Image for NVIDIA Jetson Orin AGX"},"66":{"body":"Before you begin, check device-independent prerequisites . In the case of i.MX8, Ghaf deployment consists of creating a bootable SD card with a first-stage bootloader (Tow-Boot) and USB media with the Ghaf image: To build and flash Tow-Boot bootloader: $ git clone https://github.com/tiiuae/Tow-Boot.git && cd Tow-Boot\n$ nix-build -A imx8qm-mek\n$ sudo dd if=result/ shared.disk-image.img of=/dev/ To build and flash the Ghaf image: Run the nix build .#packages.aarch64-linux.imx8qm-mek-release command. Prepare the USB boot media with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card and USB boot media into the board and switch the power on.","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for NXP i.MX 8QM-MEK","id":"66","title":"Building Ghaf Image for NXP i.MX 8QM-MEK"},"67":{"body":"Before you begin: Check device-independent prerequisites . Make sure HSS version 0.99.35-v2023.02 is programmed in your board eNVM. The version can be seen in the pre-bootloader log. Check the video guide to build HSS and program the eNVM: How to build HSS and program the eNVM? In the case of the Icicle Kit, Ghaf deployment consists of creating an SD image with U-Boot and Linux kernel from Microchip, and Ghaf-based NixOS rootfs: Build a Ghaf SD image: a. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-release command to release the image. b. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-debug command to debug the image. Flash the Ghaf SD image: If you want to use a SD card: Prepare the SD card with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card into the board and switch the power on. If you want to use the onboard MMC: You can directly flash a NixOS image to onboard an MMC card: dd if=./result/nixos.img of=/dev/ bs=32M. For more information on how to access the MMC card as a USB disk, see MPFS Icicle Kit User Guide .","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for Microchip Icicle Kit","id":"67","title":"Building Ghaf Image for Microchip Icicle Kit"},"68":{"body":"To set up a remote build on NixOS: Identify required SSH keys for remote SSH connection. Set up configurations. If you hit an issue, check Troubleshooting .","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Running Remote Build on NixOS","id":"68","title":"Running Remote Build on NixOS"},"69":{"body":"This step assumes that public SSH keys were generated and copied ( ssh-copy-id ) both for normal and root users. For more information, see Setting up public key authentication . Before you begin, make sure an SSH connection is established to the remote host for both normal and root users: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\nnix store ping --store ssh://USER@REMOTE_IP_ADDRESS 1.1. [Local Machine] Configuring SSH Keys Do the following on a local machine: Change directory to Home Directory with SSH: cd .ssh The public keys of the remote machine are located in the known_hosts file. These keys are created and configured after the ssh-copy-id command. Make sure the keys are there. If they are not there: Access the remote machine. Run cd /etc/ssh. Retrieve and copy the public keys. Go back to the local machine and paste them into known_hosts . Navigate to the /etc/ssh/ directory: cd /etc/ssh Make sure the ssh_known_hosts file contains the same public keys as the remote machine (same as .ssh/knwon_hosts). Otherwise, specify it in the configuration.nix file. Use CMD as the root user: sudo -i Make sure the root user’s keys are different from the user’s keys: cd .ssh TIP :.ssh is a user-level access and /etc/ssh is system-wide. 1.2. Accessing Remote Machine Using SSH Do the following: Navigate the authorized_keys file: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\ncd .ssh\nsudo nano authorized_keys Make sure that both user and root public keys for the local machine are located there: The user’s public key can be obtained from /home/username/.ssh/id_rsa.pub. The root user's public key can be obtained from /root/.ssh/id_rsa.pub.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 1. Configuring SSH Keys","id":"69","title":"1. Configuring SSH Keys"},"7":{"body":"Orin—NVIDIA Jetson AGX Orin as the main reference device. x86—generic x86_64; tested on Intel NUC (Next Unit of Computing) or laptop. Lenovo X1—Lenovo X1 Carbon Gen 11 laptop. aarch64—generic AArch64; tested on an ARM server, laptop (e.g. Apple MacBook's), or NVIDIA Jetson AGX Orin. All variants—supported devices from Architectural Variants . The following tables show the status of Ghaf Platform features:","breadcrumbs":"Features » Reference Devices","id":"7","title":"Reference Devices"},"70":{"body":"2.1. [Local Machine] Setting Up Configuration Files Do the following on a local machine: Set configuration variables in configuration.nix and nix.conf: Use the following commands: cd /etc/nixos\nsudo nano configuration.nix Add lib in the header like so: { config, pkgs, lib, ... }:. Edit the nix.conf file: environment.etc.\"nix/nix.conf\".text = lib.mkForce '' # Your custom nix.conf content here builders = @/etc/nix/machines require-sigs = false max-jobs = 0 # to use remote build by default not local substituters = https://cache.nixos.org/ trusted-public-keys = cache.nixos.org-1:6pb16ZPMQpcDShjY= cache.farah:STwtDRDeIDa... build-users-group = nixbld trusted-users = root farahayyad experimental-features = nix-command flakes\n''; For more information, see the nix.conf section of the Nix Reference Manual. Rebuild NixOS by running: sudo nixos-rebuild switch Create or set the machines file: Use the following commands: cd /etc/nixos\nsudo nano machines Specify the SSH settings: [ssh://]USER@HOST target-spec [SSH identity file] [max-jobs] [speed factor]\n[supported-features] [mandatory-features] [ssh-public-key-encoded] Parameters inside ‘[ ]’ are optional. The ssh-public-key-encoded is the base-64 encoded public key of the remote machine. Get the encoding using: echo -n \"your_public_key_here\" | base64 If omitted, SSH will use its regular known_hosts file. For more information, see the Remote Builds section of the Nix Reference Manual. 2.2. [Remote Machine] Setting Up Configuration Files Do the following on a remote machine: Specify the sshd_config settings: Use the following commands: cd /etc/ssh\nsudo nano sshd_config Make sure PubkeyAuthentication is set as yes . Specify the /etc/nix/nix.conf settings: Use the following commands: cd /etc/nix\nsudo nano nix.conf Edit the nix.conf file: trusted-public-keys = cache.nixos.org-1:61o0gWypbMrAURk...\nbuild-users-group = nixbld\nrequire-sigs = false\ntrusted-users = root farahayyad jk\nbinary-caches = https://cache.nixos.org/\nsubstituters = https://cache.nixos.org/\nsystem-features = nixos-test benchmark big-parallel kvm\nbinary-cache-public-keys = cache.nixos.org-1:6NCHD59X43...\nexperimental-features = nix-command flakes Run the following command to restart daemon and update all the preceding changes: systemctl restart nix-daemon.service","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 2. Setting Up Configuration Files","id":"70","title":"2. Setting Up Configuration Files"},"71":{"body":"Single-User Nix Installation Issues VPN Setup for Remote Access Private Key on Local Machine Not Matching Public Key on Remote Machine","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Troubleshooting","id":"71","title":"Troubleshooting"},"72":{"body":"This issue typically arises when Nix is installed in a single-user mode on the remote machine, which can create permission issues during multi-user operations. If an operation fails with the following error message: could not set permissions on '/nix/var/nix/profiles/per-user' to 755: Operation not permitted reinstall Nix in a multi-user setup: Uninstall Nix using a single-user mode: rm -rf /nix Install Nix in a multi-user mode: sh <(curl -L https://nixos.org/nix/install) --daemon For more information about Nix security modes, see the Security section of the Nix Reference Manual.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Single-User Nix Installation Issues","id":"72","title":"Single-User Nix Installation Issues"},"73":{"body":"A VPN is needed, if the local machine is not on the same local network as your remote build machine. To set up a VPN using OpenConnect , do the following: Install OpenConnect: nix-env -iA nixos.openconnect Establish a VPN connection: sudo openconnect --protocol=gp -b access.tii.ae Once authenticated, you establish a secure connection to your network. Use ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE to check if it is possible to connect to the remote machine.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » VPN Setup for Remote Access","id":"73","title":"VPN Setup for Remote Access"},"74":{"body":"Using mismatched key pairs could result in the Permission denied error. Ensure and double-check that you are using the right key pairs. If you choose to use/present your local’s RSA private key, make sure that it is the corresponding RSA public key that is in the remote’s authorized_file, not the ED25519 or ECDSA public keys.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Private Key on Local Machine Not Matching Public Key on Remote Machine","id":"74","title":"Private Key on Local Machine Not Matching Public Key on Remote Machine"},"75":{"body":"","breadcrumbs":"Reference Implementations » Development » Installer » Installer","id":"75","title":"Installer"},"76":{"body":"You can obtain the installation image for your Ghaf configuration. To check possible configuration options, see Modules Options . Set ghaf.installer.enable to true. Add nixos-generators module to ghaf.installer.imgModules list to configure installer image type. Choose installer modules from ghaf.installer.installerModules and set ghaf.installer.enabledModules to list of their names. Write code for the installer in ghaf.installer.installerCode. {config, ...}: { ghaf.installer = { enable = true; imgModules = [ nixos-generators.nixosModules.raw-efi ]; enabledModules = [\"flushImage\"]; installerCode = '' echo \"Starting flushing...\" if sudo dd if=${config.system.build.${config.formatAttr}} of=/dev/${config.ghaf.installer.installerModules.flushImage.providedVariables.deviceName} conv=sync bs=4K status=progress; then sync echo \"Flushing finished successfully!\" echo \"Now you can detach installation device and reboot to Ghaf.\" else echo \"Some error occured during flushing process, exit code: $?.\" exit fi ''; };\n} After that you can build an installer image using this command: nix build .#nixosConfigurations..config.system.build.installer","breadcrumbs":"Reference Implementations » Development » Installer » Configuring and Building Installer for Ghaf","id":"76","title":"Configuring and Building Installer for Ghaf"},"77":{"body":"To add an installer module, replace the corresponding placeholders with your code and add this to your configuraiton: ghaf.installer.installerModules. = { requestCode = '' # Your request code written in Bash ''; providedVariables = { # Notice the dollar sign before the actual variable name in Bash. = \"$\"; };\n};","breadcrumbs":"Reference Implementations » Development » Installer » Adding Installer Modules","id":"77","title":"Adding Installer Modules"},"78":{"body":"Provided variables show variable names in Nix. For actual names of variables in Bash, see the sources of the module.","breadcrumbs":"Reference Implementations » Development » Installer » Built-in Installer Modules","id":"78","title":"Built-in Installer Modules"},"79":{"body":"Provided variables: deviceName: name of the device on which image should be flushed (e.g. \"sda\", \"nvme0n1\")","breadcrumbs":"Reference Implementations » Development » Installer » flushImage","id":"79","title":"flushImage"},"8":{"body":"Feature Status Reference Device Details Ghaf in virtual machine ✅ x86 nix run .#packages.x86_64-linux.vm-debug aarch64 reference image ✅ Orin Based on Jetson Linux , OE4T and jetpack-nixos . aarch64 reference image ✅ imx8qm Based on NXP BSP, implemented as nixos-hardware module x86 generic image ✅ x86 Generic x86 computer, based on generic NixOS . NOTE: requires device specific configuration. Lenovo X1 reference image ✅ Lenovo X1 x86_64 laptop computer, supports basic compartmentalized environment Native build ✅ aarch64, x86 Remote aarc64 nixos builders recommended Cross-compilation 🚧 aarch64, riscv64 Depends on NixOS nixpkgs 23.05 support for cross-compilation CI builds ✅ All Only main-branch, not for all PRs . Emulated build ❌ aarch64 binfmt, may freeze the build machine. Not recommended. See instructions.","breadcrumbs":"Features » Release Builds and Hardware Architecture Support","id":"8","title":"Release Builds and Hardware Architecture Support"},"80":{"body":"Cross-compilation is currently under development and cannot be used properly on all the supported device configurations. Ghaf is targeted at a range of devices and form factors that support different instruction set architectures (ISA). Many small form-factor edge devices are not powerful enough to compile the needed applications or OSs that run on them. As the most common ISA used in desktops and servers is x_86, this will generally require that the code is cross-compiled for target ISA e.g. AArch64 or RISC-V. NixOS and Nixpkgs have good support for cross-compilation, however, there are still some that can not be compiled in this way.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation","id":"80","title":"Cross-Compilation"},"81":{"body":"An SD image for the Microchip Icicle Kit can be cross-compiled from an x86 machine. To generate the release or debug an SD image run the following command: $> nix build .#packages.riscv64-linux.microchip-icicle-kit-","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation for Microchip Icicle Kit (RISCV64)","id":"81","title":"Cross-Compilation for Microchip Icicle Kit (RISCV64)"},"82":{"body":"This will involve working with upstream package maintainers to ensure that the packages are cross-compilation aware. This will be addressed on a package-by-package basis.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Future Cross-Compilation Support","id":"82","title":"Future Cross-Compilation Support"},"83":{"body":"binfmt allows running different ISA on a development machine. This is achieved by running the target binary in an emulator such as QEMU or in a VM. So while not cross-compiled it can enable development for some embedded device configurations. To enable binfmt, we recommend to set the following in your host systems configuration.nix: boot.binfmt.emulatedSystems = [ \"riscv64-linux\" \"aarch64-linux\"\n]; In addition, it is recommended to enable KVM support with either boot.kernelModules = [ \"kvm-amd\" ]; or boot.kernelModules = [ \"kvm-intel\" ]; depending on whether your development host is running AMD or Intel processor.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » binfmt Emulated Build","id":"83","title":"binfmt Emulated Build"},"84":{"body":"Application VM (AppVM) is a VM that improves trust in system components by isolating applications from the host OS and other applications. Virtualization with hardware-backed mechanisms provides better resource protection than traditional OS. This lets users use applications of different trust levels within the same system without compromising system security. While the VMs have overhead, it is acceptable as a result of improved security and usability that makes the application seem like it is running inside an ordinary OS. As a result, both highly trusted applications and untrusted applications can be hosted in the same secure system when the concerns are separated in their own AppVMs. To create an AppVM: Add AppVM description. Add an app launcher in GUI VM.","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Creating Application VM","id":"84","title":"Creating Application VM"},"85":{"body":"Add the VM description in the target configuration. lenovo-x1-carbon.nix already has AppVMs inside for Chromium, Gala, and Zathura applications. AppVMs Example vms = with pkgs; [ { name = \"chromium\"; packages = [chromium]; macAddress = \"02:00:00:03:03:05\"; ramMb = 3072; cores = 4; } { name = \"gala\"; packages = [(pkgs.callPackage ../packages/gala {})]; macAddress = \"02:00:00:03:03:06\"; ramMb = 1536; cores = 2; } { name = \"zathura\"; packages = [zathura]; macAddress = \"02:00:00:03:03:07\"; ramMb = 512; cores = 1; }\n]; Each VM has the following properties: Property Type Unique Description Example name str yes This name is postfixed with -vm and will be shown in microvm list. The name - e.g. chromium-vm will be also the VM hostname. The lenght of the name must be 8 characters or less. “chromium” packages list of types.package no Packages to include in a VM. It is possible to make it empty or add several packages. [chromium top] macAddress str yes Needed for network configuration. \"02:00:00:03:03:05\" ramMb int, [1, …, host memory] no Memory in MB. 3072 cores int, [1, …, host cores] no Virtual CPU cores. 4","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding AppVM Description","id":"85","title":"Adding AppVM Description"},"86":{"body":"To add an application launcher, add an element in the guivm.nix file to the graphics.weston.launchers list. A launcher element has two properties: path –path to the executable you want to run, like a graphical application; icon –path to an icon to show. Check the example launchers at guivm.nix .","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding Application Launcher in GUI VM","id":"86","title":"Adding Application Launcher in GUI VM"},"87":{"body":"labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment. To use labwc as your default desktop environment, add it as a module to Ghaf: change the configuration option profiles.graphics.compositor = \"labwc\" or uncomment the corresponding line in the guivm.nix file. The basis of the labwc configuration is the set of following files: rc.xml, menu.xml, autostart, and environment. These files can be edited by substituting in the labwc overlay overlays/custom-packages/labwc/default.nix.","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » labwc Desktop Environment","id":"87","title":"labwc Desktop Environment"},"88":{"body":"The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS . Ghaf uses patched labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration = yes). The borderColor property is responsible for the frame color. TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients. For example, the foot terminal with Aqua colored frame: \n Foot Terminal with Aqua Colored Frame","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Window Border Coloring","id":"88","title":"Window Border Coloring"},"89":{"body":"Ghaf is a framework for creating virtualized edge devices, it is therefore expected that projects wishing to use Ghaf should import it to create a derived work for the specific use case. In practice, projects should import Ghaf and its dependencies into an external version control (git) repository. Ghaf provides templates for the reference hardware to ease this process. In this section: overview of Ghaf usage and upstream dependencies required steps to create a Ghaf-based project updating the project to get the latest changes customization of the project using Ghaf-modules and Nix-supported mechanisms The possible Ghaf usage in your project is illustrated in the following diagram: Ghaf Usage Overview The Ghaf Platform repository provides declarative modules and reference implementations to help with declaring your customized secure system. External repositories help make various HW options, system image generators, and reference board-support packages available.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Ghaf as Library: Templates","id":"89","title":"Ghaf as Library: Templates"},"9":{"body":"Feature Status Reference Device Details Quick target update ✅ all nixos-rebuild --flake .#nvidia-jetson-orin-debug --target-host root@ghaf-host --fast switch aarch64 device flashing ✅ Orin Full device software flashing using x86 machine root filesystem flashing ✅ x86, imx8qm dd image to bootable media - see Debug: SSH ✅ Orin, x86 Host access only in -debug-target, see authentication.nix Debug: Serial ✅ all Host access only in -debug-target - e.g. screen /dev/ttyACM0 115200 Compartmentalized environment 🚧 Lenovo X1 NetVM, GUI VM (with GPU passthrough) plus some Application VMs","breadcrumbs":"Features » Development","id":"9","title":"Development"},"90":{"body":"Check the available target templates: nix flake show github:tiiuae/ghaf Select the appropriate template based on reference implementation, for example, target-aarch64-nvidia-orin-agx: nix flake new --template github:tiiuae/ghaf#target-aarch64-nvidia-orin-agx ~/ghaf-example\nwrote: ~/ghaf-example/flake.nix See your project template outputs: cd ~/ghaf-example/\nnix flake show\ngit+file://~/ghaf-example\n├───formatter\n│ ├───aarch64-linux: package 'alejandra-3.0.0'\n│ └───x86_64-linux: package 'alejandra-3.0.0'\n├───nixosConfigurations\n│ └───PROJ_NAME-ghaf-debug: NixOS configuration\n└───packages\n├───aarch64-linux\n│ └───PROJ_NAME-ghaf-debug: package 'nixos-disk-image'\n└───x86_64-linux\n└───PROJ_NAME-ghaf-debug-flash-script: package 'flash-ghaf' Change the placeholder to the name of your project your_project: sed -i 's/PROJ_NAME/your_project/g' flake.nix","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Using Ghaf Templates","id":"90","title":"Using Ghaf Templates"},"91":{"body":"To update your project, run nix flake update. This checks the inputs for updates and based on the availability of the updates, and then generates an updated flake.lock which locks the specific versions to support the reproducible builds without side effects. In practice, a Nix flake does not allow floating inputs but all the inputs and declared packages must be mapped to specific hashes to get exact revisions of your inputs. This mechanism also supports the supply-chain security: if someone changes the upstream project, for example, by overwriting a part of the input so that the hash changes, you will notice. After updating, reviewing, and testing: commit the updated flake.lock to your version history to share reproducible builds within your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Updating Ghaf Revision","id":"91","title":"Updating Ghaf Revision"},"92":{"body":"To use the Ghaf declarative module system, check what you need in your system and choose the modules options you need. For example, import the ghaf graphics-module and declare that you will need the reference Wayland compositor Weston and the demo applications: { ghaf.graphics.weston = { enable = false; enableDemoApplications = false; }; } After the change, rebuild the system and switch it into use in your target device and it will run with the GUI and apps removed. After testing, you can commit the changes and share them with your colleagues to build the same system (even a system image) as needed in your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Customizing Ghaf Modules","id":"92","title":"Customizing Ghaf Modules"},"93":{"body":"The compartmentalization could be applied to many specific x86_64 computers and laptops with some customization applied to the Ghaf. The best way to do the Ghaf customization is by using Ghaf templates: Create a template project as described in the Ghaf as Library section. Adjust your system configuration in accordance with your HW specification. Determine all VIDs and PIDs of the devices that are passed to the VMs. Add GUIVM configuration, NetworkVM configuration, and optionally some AppVMs. Set up Weston panel shortcuts. You can refer to the existing project example for Lenovo T14 and Lenovo X1 laptops . Creating the structure that includes all necessary data for the device passthrough: # File 'my-hardware/lenovo-t14.nix':\n# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors\n# SPDX-License-Identifier: Apache-2.0\n#\n# Generic x86_64 computer -target\n{ deviceName = \"lenovo-t14\"; networkPciAddr = \"0000:00:14.3\"; networkPciVid = \"8086\"; networkPciPid = \"02f0\"; gpuPciAddr = \"0000:00:02.0\"; gpuPciVid = \"8086\"; gpuPciPid = \"9b41\"; usbInputVid = \"046d\"; usbInputPid = \"c52b\";\n} The fields of that structure are self-explanatory. Use the lspci -nnk command to get this data from any Linux OS running on the device.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Example Project","id":"93","title":"Example Project"},"94":{"body":"If after booting you see a black screen, try the following to detect the issue: Add a Wi-Fi network name and password to the lenovo-x1-carbon.nix file instead of #networks.\"ssid\".psk = \"psk\". Build and run the image. For more information, see Running Ghaf Image for Lenovo X1 . Identify an IP address by a MAC address with the arp command. If a MAC address is unknown, you can boot into the NixOS image or any other OS to find it, or try the latest addresses that arp returns. Connect using SSH (login/password ghaf/ghaf). Then connect from netvm to the host using ssh 192.168.101.2 (login/password ghaf/ghaf). Check running VMs with microvm -l. Check a GUIVM log using journalctl -u microvm@guivm. If GUIVM does not start, you can try to start it manually with /var/lib/microvms/guivm/current/bin/microvm-run. In case when GUIVM did not start with the error message that the device /dev/mouse or /dev/touchpad was not found, it means that the model of the touchpad in the laptop is different since it was bought in another country and has a different SKU (stock keeping unit). To add support for a new touchpad, do the following: On the ghaf host, check the devices in /dev/input/by-path that contain “-event-” in the name. Use the command like udevadm info -q all -a /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-event-mouse | grep name for the name of each of these devices. By name you can understand which devices belong to the touchpad. For example, on laptops in Finland they look like “SYNA8016:00 06CB:CEB3 Mouse” and “SYNA8016:00 06CB:CEB3 Touchpad”, and in the UAE they are “ELAN067C:00 04F3:31F9 Mouse” and “ELAN067C:00 04F3:31F9 Touchpad.” If there are no such devices in /dev/input/by-path, then you can check the devices /dev/input/event* with a similar command. When the necessary device names are found, add them to services.udev.extraRules in the lenovo-x1-carbon.nix file, rebuild the image and test the changes.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Troubleshooting for Lenovo X1 Laptop","id":"94","title":"Troubleshooting for Lenovo X1 Laptop"},"95":{"body":"","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Modules Options","id":"95","title":"Reference Implementations"},"96":{"body":"Embedded virtualization builds on technologies from cloud security. Cloud services provide scalable but isolated computation — your business case is isolated from someone else's business case. At the hardware level. Similarly, hardware support in modern personal devices has enabled the isolation of device resources with virtualization. This provides the baseline for secure system design for use case protection. In practice, the user can use the same device with a trusted application and with an untrusted application. Both applications are isolated from each other to protect valuable user data and privacy. Our systems are built using Nixpkgs and various Nix -based tools and configurations. For more information on Nix ecosystem, see nix.dev .","breadcrumbs":"Technologies » Technologies","id":"96","title":"Technologies"},"97":{"body":"Protected computation resources include CPU, memory, storage, and other IO devices. Allocation of these resources is managed with the hypervisor. In our reference implementation, we use KVM (Kernel Virtual Machine) from Linux to virtualize hardware access. From hardware, this requires MMU (memory management unit) for CPU physical to virtual address mapping and IOMMU for direct memory access (DMA) capable device virtual addresses to physical addresses of the main memory. Many 64-bit CPUs support virtualization via hypervisor extensions already. Our reference implementation supports x86-64 and Aarch64, and we follow RISC-V hypervisor extensions development.","breadcrumbs":"Technologies » Hardware Requirements for Virtualization","id":"97","title":"Hardware Requirements for Virtualization"},"98":{"body":"On top of OS kernel hypervisor support with KVM. We allocate virtual resources for use cases with user-space virtual machine manager (VMM) using rust-vmm based projects such as cloud-hypervisor and crosvm . QEMU is enabled for certain development use cases. In addition, we have also experimental, Aarch64 demonstrated support for a KVM variant— KVMS —which adds security features to standard KVM.","breadcrumbs":"Technologies » Virtual Machine Manager (VMM)","id":"98","title":"Virtual Machine Manager (VMM)"},"99":{"body":"Compartmentalization Passthrough Binding Device to VFIO Driver NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization Hypervisor Options","breadcrumbs":"Technologies » In This Chapter","id":"99","title":"In This Chapter"}},"length":284,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.7416573867739413},"273":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"273":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"272":{"tf":2.449489742783178}}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"273":{"tf":1.0}}},"2":{"df":1,"docs":{"273":{"tf":1.0}}},"3":{"df":1,"docs":{"273":{"tf":1.0}}},"4":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.3166247903554},"196":{"tf":1.7320508075688772},"267":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"272":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":7,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"267":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"267":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"272":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"267":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"236":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":10,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"44":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"282":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":35,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"283":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"252":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"282":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"272":{"tf":1.0}},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":2.449489742783178},"281":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.0},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":26,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.7320508075688772},"224":{"tf":1.0},"236":{"tf":2.0},"248":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":2.23606797749979},"35":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.0},"282":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"267":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"250":{"tf":1.0},"258":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.8284271247461903}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"280":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"273":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"273":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"267":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"259":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"262":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"280":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"269":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"10":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":2.23606797749979},"35":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":57,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"230":{"tf":1.0},"260":{"tf":1.0},"279":{"tf":2.0},"28":{"tf":1.4142135623730951},"281":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"263":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.242640687119285},"158":{"tf":2.23606797749979},"250":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":4.0},"273":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":2.0},"136":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"272":{"tf":7.211102550927978},"273":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"280":{"tf":2.0},"282":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"267":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"251":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.0},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"280":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":4.358898943540674},"273":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"265":{"tf":1.7320508075688772},"271":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"227":{"tf":1.4142135623730951},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"282":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"272":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":2.8284271247461903},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"272":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"122":{"tf":1.0},"132":{"tf":2.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"269":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"278":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"254":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"252":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.8284271247461903},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.0},"282":{"tf":2.6457513110645907},"283":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"240":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"273":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"267":{"tf":4.69041575982343},"273":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"279":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.449489742783178},"274":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"282":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"265":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":46,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"260":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.0},"113":{"tf":4.0},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":2.0},"265":{"tf":4.123105625617661},"267":{"tf":3.0},"268":{"tf":2.6457513110645907},"269":{"tf":1.4142135623730951},"270":{"tf":4.0},"271":{"tf":3.605551275463989},"272":{"tf":4.795831523312719},"273":{"tf":3.0},"274":{"tf":2.6457513110645907},"277":{"tf":3.3166247903554},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"281":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"279":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"282":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"283":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"230":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"a":{"df":2,"docs":{"267":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.3166247903554},"118":{"tf":2.0},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"c":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}}},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"270":{"tf":3.0},"277":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.0}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"270":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"281":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"235":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.8284271247461903},"267":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"236":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"264":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"243":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.8284271247461903},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"199":{"tf":1.0},"272":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"280":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"280":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"257":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"271":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"265":{"tf":1.0},"274":{"tf":1.0},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"253":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"267":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"272":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"272":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.4142135623730951},"283":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"283":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.0},"199":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"281":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":95,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.0},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":3.7416573867739413},"171":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":3.0},"179":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.3166247903554},"90":{"tf":2.8284271247461903},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"271":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"253":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"267":{"tf":2.0},"272":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"267":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"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":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"265":{"tf":1.0},"282":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"283":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"269":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.6457513110645907},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":71,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":2.0},"188":{"tf":2.0},"19":{"tf":1.7320508075688772},"199":{"tf":2.0},"20":{"tf":2.6457513110645907},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.4142135623730951},"254":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"166":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":13,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"245":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.0},"267":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":2.6457513110645907},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":2.0},"67":{"tf":2.8284271247461903},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"279":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"262":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"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":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"253":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"265":{"tf":2.23606797749979},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.4142135623730951},"256":{"tf":1.0},"263":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"264":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":2.23606797749979},"280":{"tf":3.0},"281":{"tf":3.7416573867739413},"282":{"tf":3.605551275463989},"283":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"224":{"tf":1.0},"283":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"238":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.0},"229":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.0},"267":{"tf":3.7416573867739413},"273":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"280":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"237":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"43":{"tf":4.242640687119285},"44":{"tf":2.6457513110645907},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":32,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.7416573867739413},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"282":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"c":{"df":3,"docs":{"59":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.0}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"241":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"273":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.242640687119285},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"257":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"259":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"271":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"265":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"277":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"267":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"260":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":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":{"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"271":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.0},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"275":{"tf":2.0},"276":{"tf":2.0},"277":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"283":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"238":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"271":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.0},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"228":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":22,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.4142135623730951},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"278":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.605551275463989},"273":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.4641016151377544},"257":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":3.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"243":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":31,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"271":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"268":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0}}}}},"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":39,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"281":{"tf":1.0}},"m":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"271":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"283":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"266":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"270":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.7320508075688772},"282":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":41,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"279":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.4142135623730951},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":36,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":2.6457513110645907},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":3.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"272":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"234":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"272":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"261":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"243":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"267":{"tf":1.0},"273":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"256":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"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":35,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.23606797749979},"272":{"tf":2.0},"277":{"tf":2.0},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"281":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"277":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.0}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"253":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"267":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.449489742783178},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"260":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"254":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"267":{"tf":5.0990195135927845},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"283":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":1.7320508075688772},"256":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":2.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"277":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"282":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"272":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"259":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"282":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"r":{"d":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.23606797749979},"211":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":41,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"272":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"272":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"273":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"280":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.0},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"264":{"tf":1.4142135623730951},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"282":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"277":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":58,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"259":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"267":{"tf":1.0},"269":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"272":{"tf":3.3166247903554},"273":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"272":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.23606797749979},"283":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.8284271247461903},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"265":{"tf":1.4142135623730951},"281":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"281":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"272":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"252":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"279":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"282":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"238":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.47213595499958},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":8,"docs":{"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.23606797749979},"166":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"279":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"238":{"tf":1.0}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":29,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"282":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":50,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"236":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.7416573867739413},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"50":{"tf":2.23606797749979}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"253":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"195":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"239":{"tf":1.0},"265":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"281":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"131":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"4":{"tf":2.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"279":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"282":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.449489742783178},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"263":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"259":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":7,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"271":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"282":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"241":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.0},"265":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"282":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":3.3166247903554},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":2.449489742783178},"277":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"273":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":18,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"267":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"282":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"242":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"243":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"244":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"237":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"280":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"2":{"df":1,"docs":{"267":{"tf":1.0}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"281":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"109":{"tf":2.0},"112":{"tf":2.449489742783178},"113":{"tf":3.3166247903554},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":3.4641016151377544},"277":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"271":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"235":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":52,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":3.3166247903554},"196":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.0},"267":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":3.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.7320508075688772}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"227":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"280":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":4.242640687119285},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"227":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":22,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"248":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"breadcrumbs":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.7416573867739413},"273":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"273":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"272":{"tf":2.449489742783178}}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"273":{"tf":1.0}}},"2":{"df":1,"docs":{"273":{"tf":1.0}}},"3":{"df":1,"docs":{"273":{"tf":1.0}}},"4":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":3.4641016151377544},"196":{"tf":2.0},"267":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"272":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"69":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":9,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"267":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"267":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"272":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"267":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"236":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"44":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":2.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"282":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"283":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"252":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"282":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"272":{"tf":1.0}},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.6457513110645907},"280":{"tf":2.6457513110645907},"281":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"133":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.23606797749979},"282":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"267":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"250":{"tf":1.0},"258":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"280":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"273":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"273":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"267":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":12,"docs":{"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"262":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"280":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":2.0},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"271":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":3.4641016151377544},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"269":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"10":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":26,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":2.23606797749979},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":2.449489742783178}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":62,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"230":{"tf":1.0},"260":{"tf":1.0},"279":{"tf":2.0},"28":{"tf":1.4142135623730951},"281":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.3166247903554},"66":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"263":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.358898943540674},"158":{"tf":2.449489742783178},"250":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":4.0},"273":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":2.0},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"4":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"272":{"tf":7.211102550927978},"273":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"280":{"tf":2.0},"282":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"267":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"251":{"tf":1.4142135623730951}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":2.0},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":3.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.23606797749979},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"280":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.23606797749979},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":4.358898943540674},"273":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"265":{"tf":1.7320508075688772},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"227":{"tf":1.4142135623730951},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":3.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"282":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"272":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":3.0},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":2.0},"219":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"272":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"122":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"269":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"278":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"254":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"252":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":2.23606797749979},"200":{"tf":2.0},"201":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":29,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.0},"282":{"tf":2.8284271247461903},"283":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"240":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"15":{"tf":1.0},"273":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"267":{"tf":4.69041575982343},"273":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"279":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.449489742783178},"274":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"282":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"265":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":71,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"260":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":3.1622776601683795},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"102":{"tf":3.0},"103":{"tf":3.7416573867739413},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.1622776601683795},"113":{"tf":4.123105625617661},"114":{"tf":3.3166247903554},"115":{"tf":2.8284271247461903},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":2.8284271247461903},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":2.0},"265":{"tf":4.123105625617661},"267":{"tf":3.1622776601683795},"268":{"tf":2.6457513110645907},"269":{"tf":1.4142135623730951},"270":{"tf":4.123105625617661},"271":{"tf":3.605551275463989},"272":{"tf":4.898979485566356},"273":{"tf":3.1622776601683795},"274":{"tf":2.8284271247461903},"277":{"tf":3.4641016151377544},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"281":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"279":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"282":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"283":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"230":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"a":{"df":2,"docs":{"267":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.4641016151377544},"118":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":2.0},"103":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"c":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}}},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"270":{"tf":3.0},"277":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"270":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"281":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"235":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"174":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":3.1622776601683795},"266":{"tf":1.0},"267":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"236":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"264":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"243":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":3.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"265":{"tf":1.0},"273":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.6457513110645907},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"199":{"tf":1.0},"272":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"280":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"280":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"257":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.449489742783178},"152":{"tf":1.0},"271":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"253":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"267":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"272":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"272":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.4142135623730951},"283":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"283":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":48,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"281":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":113,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":3.872983346207417},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.605551275463989},"90":{"tf":3.1622776601683795},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"271":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":62,"docs":{"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"267":{"tf":2.0},"272":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"267":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"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":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"279":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"265":{"tf":1.0},"282":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"283":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"269":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"176":{"tf":2.0},"18":{"tf":1.0},"188":{"tf":2.0},"19":{"tf":2.0},"199":{"tf":2.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":2.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.4142135623730951},"265":{"tf":2.449489742783178},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"166":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":3.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"245":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.4142135623730951},"267":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":2.6457513110645907},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"279":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"262":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"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":74,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"253":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"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.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"265":{"tf":2.23606797749979},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":28,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"264":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":2.449489742783178},"280":{"tf":3.1622776601683795},"281":{"tf":3.872983346207417},"282":{"tf":3.872983346207417},"283":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":3.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"224":{"tf":1.0},"283":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"238":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":1.4142135623730951},"283":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"229":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"267":{"tf":3.7416573867739413},"273":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"280":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"176":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"204":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":46,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"237":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":4.358898943540674},"44":{"tf":2.8284271247461903},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":35,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.872983346207417},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":3.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"282":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"c":{"df":3,"docs":{"59":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.7320508075688772}}},"df":1,"docs":{"227":{"tf":2.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"241":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"273":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.358898943540674},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"257":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"259":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"271":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"265":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"277":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"267":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"260":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":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":{"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"271":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"155":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"275":{"tf":2.0},"276":{"tf":2.0},"277":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"283":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"238":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":21,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":2.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"271":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"228":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":2.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":23,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.7320508075688772},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"278":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.605551275463989},"273":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.605551275463989},"257":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.1622776601683795},"36":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"243":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":36,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"24":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":3.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"271":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0}}}}},"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"281":{"tf":1.0}},"m":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"271":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"282":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"283":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.4142135623730951}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":2.0},"128":{"tf":2.23606797749979},"129":{"tf":2.449489742783178},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"201":{"tf":1.0},"266":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"270":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.7320508075688772},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.7320508075688772},"282":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":48,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"279":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.7320508075688772},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":3.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":3.3166247903554},"266":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"272":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":2.0}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":4.123105625617661},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"234":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"272":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"261":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"243":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"267":{"tf":1.0},"273":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"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":42,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":2.0},"219":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.449489742783178},"272":{"tf":2.0},"277":{"tf":2.23606797749979},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":2.0},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"281":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"277":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"253":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.7320508075688772},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"267":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"260":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"212":{"tf":1.4142135623730951},"254":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":28,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"267":{"tf":5.0990195135927845},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":2.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"283":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"254":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"277":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"282":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"272":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"259":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"282":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"r":{"d":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"279":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":72,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"272":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":47,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"272":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":2.449489742783178},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"273":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"280":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":25,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"282":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"277":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":63,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.0},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"151":{"tf":2.6457513110645907},"152":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"272":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"267":{"tf":1.0},"269":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"272":{"tf":3.3166247903554},"273":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"272":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":77,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.6457513110645907},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.4142135623730951},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.6457513110645907},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.23606797749979},"283":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":3.1622776601683795},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"265":{"tf":1.4142135623730951},"281":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"281":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.1622776601683795},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"272":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":12,"docs":{"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"252":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":2.6457513110645907},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"279":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"282":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"238":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.58257569495584},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":9,"docs":{"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"279":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"238":{"tf":1.4142135623730951}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"282":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":50,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":2.0},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":2.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"236":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.872983346207417},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"253":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":2.0},"195":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"239":{"tf":1.0},"265":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.7320508075688772},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"281":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":35,"docs":{"131":{"tf":1.0},"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"279":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"282":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":2.6457513110645907},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"263":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"259":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":42,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"271":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"282":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.0},"283":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"265":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"282":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":3.3166247903554},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"277":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"273":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":18,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"267":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"282":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":13,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.872983346207417},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"242":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"237":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"280":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"2":{"df":1,"docs":{"267":{"tf":1.0}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"281":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":3.0},"156":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.6457513110645907},"113":{"tf":3.4641016151377544},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"125":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":3.4641016151377544},"277":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"271":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.449489742783178},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"235":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":3.605551275463989},"196":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":2.449489742783178},"52":{"tf":3.1622776601683795},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.8284271247461903},"86":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"98":{"tf":2.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"227":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"280":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":2.6457513110645907},"195":{"tf":4.47213595499958},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"201":{"tf":1.7320508075688772},"227":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":22,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"title":{"root":{"1":{"1":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.0}}},"2":{"3":{".":{"0":{"5":{"df":2,"docs":{"185":{"tf":1.0},"188":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"9":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}},"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"265":{"tf":1.0},"66":{"tf":1.0}}}}},"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":5,"docs":{"131":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"x":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"6":{"4":{"df":2,"docs":{"115":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"269":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"a":{"df":3,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"/":{"c":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"266":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"141":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"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":{"48":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"c":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"118":{"tf":1.0}}}}},"df":2,"docs":{"102":{"tf":1.0},"119":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"216":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"x":{"df":4,"docs":{"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"218":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"df":30,"docs":{"0":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":2,"docs":{"220":{"tf":1.0},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"254":{"tf":1.0}}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":2,"docs":{"265":{"tf":1.0},"66":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"145":{"tf":1.0},"194":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"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":3,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"170":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"266":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"y":{"df":4,"docs":{"153":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"191":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"74":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"120":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"h":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"27":{"tf":1.0}}},"6":{"df":1,"docs":{"28":{"tf":1.0}}},"7":{"df":1,"docs":{"29":{"tf":1.0}}},"8":{"df":1,"docs":{"30":{"tf":1.0}}},"9":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}}},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":4,"docs":{"155":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"—":{"df":0,"docs":{},"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":{"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"146":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":3,"docs":{"230":{"tf":1.0},"280":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"161":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":1,"docs":{"232":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"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":{"121":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"233":{"tf":1.0}},"e":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"234":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":4,"docs":{"197":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0}}}}}},"r":{"a":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"205":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":11,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"259":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"249":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"261":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"70":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"73":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"141":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"128":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"130":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"278":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"c":{"b":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"l":{"df":1,"docs":{"241":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"151":{"tf":1.0},"28":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"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":2,"docs":{"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.0}}}}},"i":{"df":2,"docs":{"196":{"tf":1.0},"244":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":6,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.0}}}}},"i":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":12,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"246":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":3,"docs":{"247":{"tf":1.0},"37":{"tf":1.0},"98":{"tf":1.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}},"8":{"6":{"df":3,"docs":{"117":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}}}}},"lang":"English","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/searchindex.json b/searchindex.json
index e0e5ae74e..33e51fc05 100644
--- a/searchindex.json
+++ b/searchindex.json
@@ -1 +1 @@
-{"doc_urls":["index.html#about-ghaf","index.html#embedded-virtualization","index.html#ghaf-platform-applications","index.html#design-principles","index.html#build-system-and-supply-chain","features/features.html#features","features/features.html#status","features/features.html#reference-devices","features/features.html#release-builds-and-hardware-architecture-support","features/features.html#development","features/features.html#target-architecture","features/features.html#applications-and-vm-control","features/features.html#next-steps","architecture/architecture.html#architecture","architecture/architecture.html#in-this-chapter","architecture/variants.html#architectural-variants","architecture/adr.html#architecture-decision-records","architecture/adr/minimal-host.html#minimal-host","architecture/adr/minimal-host.html#status","architecture/adr/minimal-host.html#context","architecture/adr/minimal-host.html#requirements","architecture/adr/minimal-host.html#decision","architecture/adr/minimal-host.html#consequences","architecture/adr/minimal-host.html#defined-in-nix-mh01","architecture/adr/minimal-host.html#reduced-profile-mh02","architecture/adr/minimal-host.html#no-networking-mh03","architecture/adr/minimal-host.html#no-graphics-mh04","architecture/adr/minimal-host.html#no-getty-mh05","architecture/adr/minimal-host.html#no-nix-toolings-mh06","architecture/adr/minimal-host.html#minimal-defconfig-mh07","architecture/adr/minimal-host.html#update-via-adminvm-mh08","architecture/adr/minimal-host.html#read-only-filesystem-mh09","architecture/adr/netvm.html#netvmnetworking-virtual-machine","architecture/adr/netvm.html#status","architecture/adr/netvm.html#context","architecture/adr/netvm.html#decision","architecture/adr/netvm.html#consequences","architecture/adr/platform-bus-passthrough-support.html#rust-vmmbus-passthrough-support-for-rust-vmms","architecture/adr/platform-bus-passthrough-support.html#status","architecture/adr/platform-bus-passthrough-support.html#context","architecture/adr/platform-bus-passthrough-support.html#decision","architecture/hardening.html#hardening","architecture/hardening.html#kernel","architecture/hardening.html#kernel-hardening-process","architecture/hardening.html#host-kernel","architecture/secureboot.html#secure-boot","architecture/secureboot.html#enabling-secure-boot","architecture/secureboot.html#creating-secure-boot-keys","architecture/secureboot.html#current-implementation","architecture/secureboot.html#secure-boot-verification","architecture/stack.html#stack","architecture/stack.html#system-vms","architecture/stack.html#application-or-service-vm","architecture/stack.html#guest-oss","appendices/contributing_general.html#contribution-guidelines","ref_impl/reference_implementations.html#reference-implementations","ref_impl/reference_implementations.html#approach","ref_impl/reference_implementations.html#example","ref_impl/reference_implementations.html#in-this-chapter","ref_impl/development.html#development","ref_impl/build_and_run.html#build-and-run","ref_impl/build_and_run.html#prerequisites","ref_impl/build_and_run.html#running-ghaf-image-for-x86-vm-ghaf-host","ref_impl/build_and_run.html#running-ghaf-image-for-x86-computer","ref_impl/build_and_run.html#running-ghaf-image-for-lenovo-x1","ref_impl/build_and_run.html#ghaf-image-for-nvidia-jetson-orin-agx","ref_impl/build_and_run.html#building-ghaf-image-for-nxp-imx-8qm-mek","ref_impl/build_and_run.html#building-ghaf-image-for-microchip-icicle-kit","ref_impl/remote_build_setup.html#running-remote-build-on-nixos","ref_impl/remote_build_setup.html#1-configuring-ssh-keys","ref_impl/remote_build_setup.html#2-setting-up-configuration-files","ref_impl/remote_build_setup.html#troubleshooting","ref_impl/remote_build_setup.html#single-user-nix-installation-issues","ref_impl/remote_build_setup.html#vpn-setup-for-remote-access","ref_impl/remote_build_setup.html#private-key-on-local-machine-not-matching-public-key-on-remote-machine","ref_impl/installer.html#installer","ref_impl/installer.html#configuring-and-building-installer-for-ghaf","ref_impl/installer.html#adding-installer-modules","ref_impl/installer.html#built-in-installer-modules","ref_impl/installer.html#flushimage","ref_impl/cross_compilation.html#cross-compilation","ref_impl/cross_compilation.html#cross-compilation-for-microchip-icicle-kit-riscv64","ref_impl/cross_compilation.html#future-cross-compilation-support","ref_impl/cross_compilation.html#binfmt-emulated-build","ref_impl/creating_appvm.html#creating-application-vm","ref_impl/creating_appvm.html#adding-appvm-description","ref_impl/creating_appvm.html#adding-application-launcher-in-gui-vm","ref_impl/labwc.html#labwc-desktop-environment","ref_impl/labwc.html#window-border-coloring","ref_impl/ghaf-based-project.html#ghaf-as-library-templates","ref_impl/ghaf-based-project.html#using-ghaf-templates","ref_impl/ghaf-based-project.html#updating-ghaf-revision","ref_impl/ghaf-based-project.html#customizing-ghaf-modules","ref_impl/example_project.html#example-project","ref_impl/example_project.html#troubleshooting-for-lenovo-x1-laptop","ref_impl/modules_options.html","technologies/technologies.html#technologies","technologies/technologies.html#hardware-requirements-for-virtualization","technologies/technologies.html#virtual-machine-manager-vmm","technologies/technologies.html#in-this-chapter","technologies/compartment.html#compartmentalization","technologies/passthrough.html#devices-passthrough","technologies/vfio.html#binding-devices-to-vfio-driver-to-allow-passthrough","technologies/vfio.html#using-driverctl-package","technologies/nvidia_agx_pt_uart.html#nvidia-jetson-agx-orin-uart-passthrough","technologies/nvidia_agx_pt_uart.html#uart-connections","technologies/nvidia_agx_pt_uart.html#uarti-selected-for-passthrough","technologies/nvidia_agx_pt_uart.html#host-device-tree","technologies/nvidia_agx_pt_uart.html#guest-device-tree","technologies/nvidia_agx_pt_uart.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#nvidia-jetson-agx-orin-pcie-passthrough","technologies/nvidia_agx_pt_pcie.html#pcie-slots-in-nvidia-jetson-agx-orin","technologies/nvidia_agx_pt_pcie.html#enabling-pcie-devices-for-vfio","technologies/nvidia_agx_pt_pcie.html#binding-device-for-vfio","technologies/nvidia_agx_pt_pcie.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#arm64-pci-device-interrupts","technologies/nvidia_agx_pt_pcie.html#more-work-for-arm64","technologies/x86_pcie_crosvm.html#x86-pcie-device-passthrough-with-crosvm","technologies/x86_pcie_crosvm.html#enabling-pcie-devices-for-vfio-with-driverctl","technologies/x86_pcie_crosvm.html#reseting-driver-to-original-state-afterwards","technologies/nvidia_virtualization_bpmp.html#nvidia-jetson-agx-orin-boot-and-power-management-processor-virtualization","technologies/nvidia_virtualization_bpmp.html#architectural-overview","technologies/nvidia_virtualization_bpmp.html#use-cases","technologies/nvidia_virtualization_bpmp.html#using-bpmp-virtualization-options-on-nvidia-jetson-agx-orin","technologies/nvidia_virtualization_bpmp.html#testing","technologies/nvidia_virtualization_bpmp.html#host-testing","technologies/nvidia_virtualization_bpmp.html#guest-for-uarta-testing","technologies/nvidia_virtualization_bpmp.html#related-topics","technologies/hypervisor_options.html#ghaf-specific-microvm-hypervisor-options","technologies/hypervisor_options.html#options-definitions","technologies/hypervisor_options.html#generated-hypervisor-start-commands","technologies/hypervisor_options.html#adding-option-to-hypervisor-command-line","scs/ci-cd-system.html#continuous-integration-and-distribution","scs/ci-cd-system.html#general-process","scs/scs.html#supply-chain-security","scs/scs.html#in-this-chapter","scs/slsa-framework.html#slsa-framework","scs/slsa-framework.html#slsa-terminology","scs/slsa-framework.html#levels-of-assurance","scs/slsa-framework.html#requirements","scs/basics.html#basic-security-measures","scs/basics.html#source-code--version-control-security","scs/basics.html#commit-signing","scs/basics.html#branch-protection","scs/basics.html#software-signing","scs/basics.html#enabling-image-signing-on-hydra","scs/basics.html#shared-nix-store","scs/basics.html#data-encryption-in-transit","scs/sbom.html#software-bill-of-materials-sbom","scs/sbom.html#sbom-formats-and-specifications","scs/sbom.html#sbom-usage-in-ghaf","scs/sbom.html#sbom-tooling-in-ghaf","scs/sbom.html#references","scs/pki.html#public-key-infrastructure","scs/pki.html#private-certificate-authority-pca","scs/pki.html#hardware-security-module","scs/pki.html#hsm-variants-for-consideration","scs/pki.html#ca-hierarchy-options","scs/pki.html#proposed-ca-hierarchy","scs/ghaf-security-fix-automation.html#security-fix-automation","scs/ghaf-security-fix-automation.html#semi-automated-upstream-first-process","release_notes/release_notes.html#ghaf-release-notes","release_notes/release_notes.html#in-this-chapter","release_notes/ghaf-23.12.html#release-ghaf-2312","release_notes/ghaf-23.12.html#release-branch","release_notes/ghaf-23.12.html#supported-hardware","release_notes/ghaf-23.12.html#what-is-new-in-ghaf-2312","release_notes/ghaf-23.12.html#bug-fixes","release_notes/ghaf-23.12.html#known-issues-and-limitations","release_notes/ghaf-23.12.html#environment-requirements","release_notes/ghaf-23.12.html#installation-instructions","release_notes/ghaf-23.09.html#release-ghaf-2309","release_notes/ghaf-23.09.html#release-branch","release_notes/ghaf-23.09.html#supported-hardware","release_notes/ghaf-23.09.html#what-is-new-in-ghaf-2309","release_notes/ghaf-23.09.html#bug-fixes","release_notes/ghaf-23.09.html#known-issues-and-limitations","release_notes/ghaf-23.09.html#environment-requirements","release_notes/ghaf-23.09.html#installation-instructions","release_notes/ghaf-23.06.html#release-ghaf-2306","release_notes/ghaf-23.06.html#release-branch","release_notes/ghaf-23.06.html#supported-hardware","release_notes/ghaf-23.06.html#what-is-new-in-ghaf-2306","release_notes/ghaf-23.06.html#bug-fixes","release_notes/ghaf-23.06.html#known-issues-and-limitations","release_notes/ghaf-23.05.html#release-ghaf-2305","release_notes/ghaf-23.05.html#release-branch","release_notes/ghaf-23.05.html#supported-hardware","release_notes/ghaf-23.05.html#what-is-new-in-ghaf-2305","release_notes/ghaf-23.05.html#known-issues-and-limitations","scenarios/showcases.html#showcases","scenarios/showcases.html#secure-laptop","scenarios/showcases.html#in-this-chapter","scenarios/run_win_vm.html#running-windows-11-in-vm-on-ghaf","scenarios/run_win_vm.html#getting-windows-11-image","scenarios/run_win_vm.html#running-windows-11-in-vm","scenarios/run_win_vm.html#using-ui-to-launch-windows-11-vm","scenarios/run_win_vm.html#passing-additional-parameters-to-qemu","scenarios/run_cuttlefish.html#running-android-cuttlefish-virtual-device-on-ghaf","scenarios/run_cuttlefish.html#installing-cuttlefish","scenarios/run_cuttlefish.html#running-cuttlefish","scenarios/run_cuttlefish.html#connecting-to-cuttlefish-device","appendices/glossary.html#glossary","appendices/glossary.html#appropriate-use-of-articles-before-abbreviations","appendices/glossary.html#trivia","appendices/glossary.html#project-related","appendices/glossary.html#ghaf","appendices/glossary.html#cicd","appendices/glossary.html#ssrc","appendices/glossary.html#tii","appendices/glossary.html#core-concepts","appendices/glossary.html#adr","appendices/glossary.html#bpmp","appendices/glossary.html#bsp","appendices/glossary.html#dhcp","appendices/glossary.html#dma","appendices/glossary.html#emmc-e-mmc","appendices/glossary.html#eula","appendices/glossary.html#fw","appendices/glossary.html#gala","appendices/glossary.html#gui","appendices/glossary.html#ids","appendices/glossary.html#iommu","appendices/glossary.html#ip","appendices/glossary.html#isa","appendices/glossary.html#kvm","appendices/glossary.html#kvms","appendices/glossary.html#mmu","appendices/glossary.html#msi","appendices/glossary.html#nixos","appendices/glossary.html#oem","appendices/glossary.html#os","appendices/glossary.html#pci","appendices/glossary.html#pcie","appendices/glossary.html#qemu","appendices/glossary.html#sbsa","appendices/glossary.html#sku","appendices/glossary.html#soc","appendices/glossary.html#ssd","appendices/glossary.html#tcb","appendices/glossary.html#tls","appendices/glossary.html#uart","appendices/glossary.html#uefi","appendices/glossary.html#ui","appendices/glossary.html#vfio","appendices/glossary.html#vm","appendices/glossary.html#vmm","appendices/glossary.html#zta","appendices/glossary.html#scs-related","appendices/glossary.html#ca","appendices/glossary.html#cms","appendices/glossary.html#eddsa","appendices/glossary.html#gpg","appendices/glossary.html#hsm","appendices/glossary.html#openssl","appendices/glossary.html#pki","appendices/glossary.html#pynacl","appendices/glossary.html#ra","appendices/glossary.html#sbom","appendices/glossary.html#scs","appendices/glossary.html#secure-cryptoprocessor","appendices/glossary.html#software-artifact","appendices/glossary.html#slsa","research/research.html#research-notes","research/passthrough/ethernet.html#imx-8qm-ethernet-passthrough","research/passthrough/ethernet.html#host-kernel-configuration","research/passthrough/ethernet.html#host-device-tree-explained","research/passthrough/ethernet.html#other-notes-about-passthrough","research/passthrough/ethernet.html#changes-in-u-boot","research/passthrough/ethernet.html#running-platform-device-passthrough-in-qemu","research/passthrough/ethernet.html#guest-setup","research/passthrough/ethernet.html#adding-devices-to-guest","research/passthrough/ethernet.html#some-final-touches-for-guest-devices","research/passthrough/ethernet.html#compiling-the-device-tree-source-to-binary-form","research/passthrough/ethernet.html#compiling-for-guest","research/passthrough/ethernet.html#compiling-for-host","research/passthrough/ethernet.html#running-qemu-with-passthrough-platform-devices","research/installation.html#approaches-to-ghaf-system-installation","research/installation.html#ghaf-initial-approach","research/installation.html#nixos-approach","research/installation.html#modular-interactive","research/installation.html#declarative-non-interactive-installation","research/installation.html#discussion"],"index":{"documentStore":{"docInfo":{"0":{"body":119,"breadcrumbs":2,"title":1},"1":{"body":62,"breadcrumbs":3,"title":2},"10":{"body":129,"breadcrumbs":3,"title":2},"100":{"body":100,"breadcrumbs":3,"title":1},"101":{"body":77,"breadcrumbs":4,"title":2},"102":{"body":43,"breadcrumbs":12,"title":6},"103":{"body":123,"breadcrumbs":9,"title":3},"104":{"body":18,"breadcrumbs":14,"title":6},"105":{"body":211,"breadcrumbs":10,"title":2},"106":{"body":31,"breadcrumbs":11,"title":3},"107":{"body":87,"breadcrumbs":11,"title":3},"108":{"body":87,"breadcrumbs":11,"title":3},"109":{"body":117,"breadcrumbs":11,"title":3},"11":{"body":38,"breadcrumbs":4,"title":3},"110":{"body":22,"breadcrumbs":14,"title":6},"111":{"body":338,"breadcrumbs":14,"title":6},"112":{"body":114,"breadcrumbs":12,"title":4},"113":{"body":127,"breadcrumbs":11,"title":3},"114":{"body":59,"breadcrumbs":11,"title":3},"115":{"body":104,"breadcrumbs":12,"title":4},"116":{"body":179,"breadcrumbs":11,"title":3},"117":{"body":0,"breadcrumbs":12,"title":5},"118":{"body":127,"breadcrumbs":12,"title":5},"119":{"body":13,"breadcrumbs":12,"title":5},"12":{"body":8,"breadcrumbs":3,"title":2},"120":{"body":45,"breadcrumbs":15,"title":9},"121":{"body":59,"breadcrumbs":8,"title":2},"122":{"body":57,"breadcrumbs":8,"title":2},"123":{"body":42,"breadcrumbs":14,"title":8},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":35,"breadcrumbs":8,"title":2},"126":{"body":81,"breadcrumbs":9,"title":3},"127":{"body":15,"breadcrumbs":8,"title":2},"128":{"body":30,"breadcrumbs":8,"title":5},"129":{"body":43,"breadcrumbs":5,"title":2},"13":{"body":101,"breadcrumbs":2,"title":1},"130":{"body":161,"breadcrumbs":7,"title":4},"131":{"body":78,"breadcrumbs":8,"title":5},"132":{"body":38,"breadcrumbs":6,"title":3},"133":{"body":107,"breadcrumbs":5,"title":2},"134":{"body":121,"breadcrumbs":6,"title":3},"135":{"body":12,"breadcrumbs":4,"title":1},"136":{"body":24,"breadcrumbs":7,"title":2},"137":{"body":18,"breadcrumbs":7,"title":2},"138":{"body":154,"breadcrumbs":7,"title":2},"139":{"body":69,"breadcrumbs":6,"title":1},"14":{"body":14,"breadcrumbs":2,"title":1},"140":{"body":0,"breadcrumbs":9,"title":3},"141":{"body":16,"breadcrumbs":11,"title":5},"142":{"body":24,"breadcrumbs":8,"title":2},"143":{"body":34,"breadcrumbs":8,"title":2},"144":{"body":58,"breadcrumbs":8,"title":2},"145":{"body":43,"breadcrumbs":10,"title":4},"146":{"body":26,"breadcrumbs":9,"title":3},"147":{"body":25,"breadcrumbs":9,"title":3},"148":{"body":17,"breadcrumbs":10,"title":4},"149":{"body":76,"breadcrumbs":9,"title":3},"15":{"body":131,"breadcrumbs":5,"title":2},"150":{"body":48,"breadcrumbs":9,"title":3},"151":{"body":43,"breadcrumbs":9,"title":3},"152":{"body":18,"breadcrumbs":7,"title":1},"153":{"body":68,"breadcrumbs":9,"title":3},"154":{"body":45,"breadcrumbs":10,"title":4},"155":{"body":48,"breadcrumbs":9,"title":3},"156":{"body":148,"breadcrumbs":9,"title":3},"157":{"body":118,"breadcrumbs":9,"title":3},"158":{"body":29,"breadcrumbs":9,"title":3},"159":{"body":40,"breadcrumbs":9,"title":3},"16":{"body":47,"breadcrumbs":7,"title":3},"160":{"body":204,"breadcrumbs":11,"title":5},"161":{"body":19,"breadcrumbs":5,"title":3},"162":{"body":12,"breadcrumbs":3,"title":1},"163":{"body":0,"breadcrumbs":8,"title":3},"164":{"body":2,"breadcrumbs":7,"title":2},"165":{"body":25,"breadcrumbs":7,"title":2},"166":{"body":90,"breadcrumbs":8,"title":3},"167":{"body":40,"breadcrumbs":7,"title":2},"168":{"body":95,"breadcrumbs":8,"title":3},"169":{"body":4,"breadcrumbs":7,"title":2},"17":{"body":0,"breadcrumbs":8,"title":2},"170":{"body":80,"breadcrumbs":7,"title":2},"171":{"body":0,"breadcrumbs":8,"title":3},"172":{"body":2,"breadcrumbs":7,"title":2},"173":{"body":25,"breadcrumbs":7,"title":2},"174":{"body":61,"breadcrumbs":8,"title":3},"175":{"body":20,"breadcrumbs":7,"title":2},"176":{"body":116,"breadcrumbs":8,"title":3},"177":{"body":4,"breadcrumbs":7,"title":2},"178":{"body":47,"breadcrumbs":7,"title":2},"179":{"body":0,"breadcrumbs":8,"title":3},"18":{"body":1,"breadcrumbs":7,"title":1},"180":{"body":2,"breadcrumbs":7,"title":2},"181":{"body":16,"breadcrumbs":7,"title":2},"182":{"body":31,"breadcrumbs":8,"title":3},"183":{"body":9,"breadcrumbs":7,"title":2},"184":{"body":49,"breadcrumbs":8,"title":3},"185":{"body":0,"breadcrumbs":8,"title":3},"186":{"body":2,"breadcrumbs":7,"title":2},"187":{"body":16,"breadcrumbs":7,"title":2},"188":{"body":38,"breadcrumbs":8,"title":3},"189":{"body":55,"breadcrumbs":8,"title":3},"19":{"body":73,"breadcrumbs":7,"title":1},"190":{"body":22,"breadcrumbs":2,"title":1},"191":{"body":93,"breadcrumbs":3,"title":2},"192":{"body":7,"breadcrumbs":2,"title":1},"193":{"body":28,"breadcrumbs":10,"title":5},"194":{"body":83,"breadcrumbs":9,"title":4},"195":{"body":236,"breadcrumbs":9,"title":4},"196":{"body":58,"breadcrumbs":11,"title":6},"197":{"body":30,"breadcrumbs":9,"title":4},"198":{"body":51,"breadcrumbs":10,"title":6},"199":{"body":209,"breadcrumbs":6,"title":2},"2":{"body":42,"breadcrumbs":4,"title":3},"20":{"body":158,"breadcrumbs":7,"title":1},"200":{"body":29,"breadcrumbs":6,"title":2},"201":{"body":52,"breadcrumbs":7,"title":3},"202":{"body":118,"breadcrumbs":2,"title":1},"203":{"body":92,"breadcrumbs":6,"title":5},"204":{"body":20,"breadcrumbs":2,"title":1},"205":{"body":0,"breadcrumbs":3,"title":2},"206":{"body":10,"breadcrumbs":2,"title":1},"207":{"body":35,"breadcrumbs":2,"title":1},"208":{"body":22,"breadcrumbs":2,"title":1},"209":{"body":33,"breadcrumbs":2,"title":1},"21":{"body":41,"breadcrumbs":7,"title":1},"210":{"body":0,"breadcrumbs":3,"title":2},"211":{"body":32,"breadcrumbs":2,"title":1},"212":{"body":38,"breadcrumbs":2,"title":1},"213":{"body":10,"breadcrumbs":2,"title":1},"214":{"body":26,"breadcrumbs":2,"title":1},"215":{"body":21,"breadcrumbs":2,"title":1},"216":{"body":2,"breadcrumbs":4,"title":3},"217":{"body":4,"breadcrumbs":2,"title":1},"218":{"body":1,"breadcrumbs":2,"title":1},"219":{"body":37,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":7,"title":1},"220":{"body":3,"breadcrumbs":2,"title":1},"221":{"body":16,"breadcrumbs":2,"title":1},"222":{"body":4,"breadcrumbs":2,"title":1},"223":{"body":14,"breadcrumbs":2,"title":1},"224":{"body":13,"breadcrumbs":2,"title":1},"225":{"body":10,"breadcrumbs":2,"title":1},"226":{"body":10,"breadcrumbs":2,"title":1},"227":{"body":3,"breadcrumbs":2,"title":1},"228":{"body":3,"breadcrumbs":2,"title":1},"229":{"body":10,"breadcrumbs":2,"title":1},"23":{"body":37,"breadcrumbs":9,"title":3},"230":{"body":3,"breadcrumbs":2,"title":1},"231":{"body":2,"breadcrumbs":2,"title":1},"232":{"body":3,"breadcrumbs":2,"title":1},"233":{"body":4,"breadcrumbs":2,"title":1},"234":{"body":9,"breadcrumbs":2,"title":1},"235":{"body":32,"breadcrumbs":2,"title":1},"236":{"body":10,"breadcrumbs":2,"title":1},"237":{"body":14,"breadcrumbs":2,"title":1},"238":{"body":3,"breadcrumbs":2,"title":1},"239":{"body":23,"breadcrumbs":2,"title":1},"24":{"body":30,"breadcrumbs":9,"title":3},"240":{"body":5,"breadcrumbs":2,"title":1},"241":{"body":7,"breadcrumbs":2,"title":1},"242":{"body":22,"breadcrumbs":2,"title":1},"243":{"body":2,"breadcrumbs":2,"title":1},"244":{"body":6,"breadcrumbs":2,"title":1},"245":{"body":2,"breadcrumbs":2,"title":1},"246":{"body":3,"breadcrumbs":2,"title":1},"247":{"body":7,"breadcrumbs":2,"title":1},"248":{"body":0,"breadcrumbs":3,"title":2},"249":{"body":2,"breadcrumbs":2,"title":1},"25":{"body":105,"breadcrumbs":8,"title":2},"250":{"body":3,"breadcrumbs":2,"title":1},"251":{"body":5,"breadcrumbs":2,"title":1},"252":{"body":13,"breadcrumbs":2,"title":1},"253":{"body":10,"breadcrumbs":2,"title":1},"254":{"body":5,"breadcrumbs":2,"title":1},"255":{"body":6,"breadcrumbs":2,"title":1},"256":{"body":9,"breadcrumbs":2,"title":1},"257":{"body":2,"breadcrumbs":2,"title":1},"258":{"body":14,"breadcrumbs":2,"title":1},"259":{"body":10,"breadcrumbs":2,"title":1},"26":{"body":26,"breadcrumbs":8,"title":2},"260":{"body":6,"breadcrumbs":3,"title":2},"261":{"body":11,"breadcrumbs":3,"title":2},"262":{"body":23,"breadcrumbs":2,"title":1},"263":{"body":14,"breadcrumbs":4,"title":2},"264":{"body":168,"breadcrumbs":10,"title":4},"265":{"body":22,"breadcrumbs":9,"title":3},"266":{"body":373,"breadcrumbs":10,"title":4},"267":{"body":55,"breadcrumbs":8,"title":2},"268":{"body":56,"breadcrumbs":9,"title":3},"269":{"body":114,"breadcrumbs":11,"title":5},"27":{"body":29,"breadcrumbs":8,"title":2},"270":{"body":112,"breadcrumbs":8,"title":2},"271":{"body":665,"breadcrumbs":9,"title":3},"272":{"body":254,"breadcrumbs":10,"title":4},"273":{"body":35,"breadcrumbs":12,"title":6},"274":{"body":27,"breadcrumbs":8,"title":2},"275":{"body":27,"breadcrumbs":8,"title":2},"276":{"body":129,"breadcrumbs":11,"title":5},"277":{"body":20,"breadcrumbs":8,"title":4},"278":{"body":152,"breadcrumbs":7,"title":3},"279":{"body":120,"breadcrumbs":6,"title":2},"28":{"body":42,"breadcrumbs":9,"title":3},"280":{"body":141,"breadcrumbs":6,"title":2},"281":{"body":174,"breadcrumbs":8,"title":4},"282":{"body":46,"breadcrumbs":5,"title":1},"29":{"body":29,"breadcrumbs":9,"title":3},"3":{"body":127,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":10,"title":4},"31":{"body":12,"breadcrumbs":9,"title":3},"32":{"body":0,"breadcrumbs":9,"title":3},"33":{"body":10,"breadcrumbs":7,"title":1},"34":{"body":56,"breadcrumbs":7,"title":1},"35":{"body":171,"breadcrumbs":7,"title":1},"36":{"body":37,"breadcrumbs":7,"title":1},"37":{"body":0,"breadcrumbs":14,"title":6},"38":{"body":3,"breadcrumbs":9,"title":1},"39":{"body":89,"breadcrumbs":9,"title":1},"4":{"body":62,"breadcrumbs":5,"title":4},"40":{"body":93,"breadcrumbs":9,"title":1},"41":{"body":8,"breadcrumbs":3,"title":1},"42":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":148,"breadcrumbs":5,"title":3},"44":{"body":79,"breadcrumbs":4,"title":2},"45":{"body":18,"breadcrumbs":5,"title":2},"46":{"body":33,"breadcrumbs":6,"title":3},"47":{"body":40,"breadcrumbs":7,"title":4},"48":{"body":25,"breadcrumbs":5,"title":2},"49":{"body":67,"breadcrumbs":6,"title":3},"5":{"body":40,"breadcrumbs":2,"title":1},"50":{"body":78,"breadcrumbs":3,"title":1},"51":{"body":30,"breadcrumbs":4,"title":2},"52":{"body":51,"breadcrumbs":5,"title":3},"53":{"body":16,"breadcrumbs":4,"title":2},"54":{"body":27,"breadcrumbs":3,"title":2},"55":{"body":30,"breadcrumbs":4,"title":2},"56":{"body":92,"breadcrumbs":3,"title":1},"57":{"body":89,"breadcrumbs":3,"title":1},"58":{"body":16,"breadcrumbs":3,"title":1},"59":{"body":128,"breadcrumbs":4,"title":1},"6":{"body":15,"breadcrumbs":2,"title":1},"60":{"body":26,"breadcrumbs":7,"title":2},"61":{"body":117,"breadcrumbs":6,"title":1},"62":{"body":52,"breadcrumbs":12,"title":7},"63":{"body":34,"breadcrumbs":10,"title":5},"64":{"body":37,"breadcrumbs":10,"title":5},"65":{"body":286,"breadcrumbs":11,"title":6},"66":{"body":79,"breadcrumbs":12,"title":7},"67":{"body":129,"breadcrumbs":11,"title":6},"68":{"body":19,"breadcrumbs":11,"title":4},"69":{"body":173,"breadcrumbs":11,"title":4},"7":{"body":47,"breadcrumbs":3,"title":2},"70":{"body":248,"breadcrumbs":12,"title":5},"71":{"body":18,"breadcrumbs":8,"title":1},"72":{"body":64,"breadcrumbs":12,"title":5},"73":{"body":44,"breadcrumbs":11,"title":4},"74":{"body":33,"breadcrumbs":16,"title":9},"75":{"body":0,"breadcrumbs":5,"title":1},"76":{"body":87,"breadcrumbs":8,"title":4},"77":{"body":26,"breadcrumbs":7,"title":3},"78":{"body":13,"breadcrumbs":7,"title":3},"79":{"body":10,"breadcrumbs":5,"title":1},"8":{"body":98,"breadcrumbs":6,"title":5},"80":{"body":61,"breadcrumbs":7,"title":2},"81":{"body":24,"breadcrumbs":11,"title":6},"82":{"body":14,"breadcrumbs":9,"title":4},"83":{"body":54,"breadcrumbs":8,"title":3},"84":{"body":75,"breadcrumbs":9,"title":3},"85":{"body":117,"breadcrumbs":9,"title":3},"86":{"body":28,"breadcrumbs":11,"title":5},"87":{"body":44,"breadcrumbs":9,"title":3},"88":{"body":84,"breadcrumbs":9,"title":3},"89":{"body":98,"breadcrumbs":8,"title":3},"9":{"body":74,"breadcrumbs":2,"title":1},"90":{"body":93,"breadcrumbs":8,"title":3},"91":{"body":68,"breadcrumbs":8,"title":3},"92":{"body":54,"breadcrumbs":8,"title":3},"93":{"body":115,"breadcrumbs":9,"title":2},"94":{"body":182,"breadcrumbs":11,"title":4},"95":{"body":0,"breadcrumbs":7,"title":2},"96":{"body":73,"breadcrumbs":2,"title":1},"97":{"body":70,"breadcrumbs":4,"title":3},"98":{"body":45,"breadcrumbs":5,"title":4},"99":{"body":34,"breadcrumbs":2,"title":1}},"docs":{"0":{"body":"Ghaf Framework is an open-source project that provides information about our work and studies in the security technologies field in the context of embedded virtualization. The applied software research supports Secure Systems Research Center (SSRC) focus areas. Ghaf Framework can be used to build the Ghaf Platform that will provide an edge device software architecture with key features such as modularity and scalability through virtualization, support research and development of zero trust architecture (ZTA), and allow for low maintenance efforts while keeping the main code base stable and secure. The SSRC team focus is to research on enhancing ZTA to scale horizontally across edge HW platforms (phones, drones, laptops, communication modules) and vertically across SW platforms (Linux, Android, Browser, applications). The Ghaf Platform is a baseline software platform for edge devices, utilizing a virtualized architecture for research and product development aiming to achieve the following core objectives: apply the general security principles of zero trust within the software architecture, and act as an enabler for ZTAs within organizations. Ghaf Platform Infrastructure","breadcrumbs":"About Ghaf » About Ghaf","id":"0","title":"About Ghaf"},"1":{"body":"Virtualization is one of the core enablers to transform the traditionally monolithic software stack within edge devices into isolated components with minimal TCB and clearly defined functionality. The Ghaf Platform utilizes a collection of virtual machines (VMs) to define a system. Contrary to the traditional monolithic OS, this concept allows to define and run host services in isolated environments, which breaks up the monolithic structure and allows for a modular system definition that is customizable for a specific use case. To this end, various applications and guest OSs can be deployed while simultaneously utilizing the Platform's features.","breadcrumbs":"About Ghaf » Embedded Virtualization","id":"1","title":"Embedded Virtualization"},"10":{"body":"Feature Status Reference Device Details minimal host 🚧 all See Minimal Host and PR #140 . netvm ✅ Orin See netvm . Passthrough with Wifi works but requires SSID/password configuration idsvm ✅ Orin Defensive security VM placeholder PR open guivm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device, other devices have Wayland compositor running on the host. appvm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device: chromium, GALA and zathura VMs. Requires guivm in place adminvm ✅ All Not started Inter VM comms - IP-based 🚧 All -debug-targets have network bridges to access VMs from host Inter VM comms - shared memory 🚧 All Inter VM Wayland 🚧 All Currently it is waypipe over SSH, for test and demo purpose only SW update 🚧 All A/B update tooling being evaluated USB passthrough 🚧 Orin No reference implementation integrated yet PCI passthrough ✅ All Used for reference in netvm on Orin UART passthrough 🚧 Orin See NVIDIA Jetson AGX Orin: UART Passthrough . Not integrated to any VM. ARM platform bus devices passthrough 🚧 Orin NVIDIA BPMP virtualization being developed","breadcrumbs":"Features » Target Architecture","id":"10","title":"Target Architecture"},"100":{"body":"Compartmentalization is the technique of separating parts of a system to decrease attack surface and prevent malfunctions from cascading in the system. In Ghaf architecture, there is a separate VM for every vital function of the system. Current implementation supports GUI VM, Networking VM and a couple of Application VMs, such as the Chromium web browser and the Zathura document viewer. The GUI VM owns a computer's GPU and performs desktop environment and application windows rendering. Wayland protocol for applications in this case is proxified by waypipe over SSH. This approach is used temporarily before moving to more sophisticated solutions. A VM compartmentalization requires all necessary devices passthrough in place. More specifically, you need to know the PCI VID and PID of a device and also its number on the PCI bus. In the case of a USB device passthrough, it is enough to know the device's VID and PID. For more information on actual implementation, see Ghaf as Library and Creating Application VM .","breadcrumbs":"Technologies » Compartmentalization » Compartmentalization","id":"100","title":"Compartmentalization"},"101":{"body":"Devices passthrough to virtual machines (VM) allows us to isolate the device drivers and their memory access in one or several VMs. This reduces the Trusted Code Base (TCB) in the host, due to the passed-through device drivers can be removed completely from the host kernel. Whether the device platform is x86 or ARM, the passthrough device needs to be bound to the VFIO device driver by the host system before it can be passed through to the guest environment. For more information, see Binding Device to VFIO Driver . Our current supported passthrough devices implementations: NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm","breadcrumbs":"Technologies » Passthrough » Devices Passthrough","id":"101","title":"Devices Passthrough"},"102":{"body":"An example of binding a PCI device to the VFIO driver manually: export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id Similar approach also works for platform devices. The device path for platform devices is /sys/bus/platform/devices/$DEVICE/. export DEVICE=\"31d0000.serial\"\necho vfio-platform > /sys/bus/platform/devices/$DEVICE/driver_override\necho \"$DEVICE\" > /sys/bus/platform/drivers/vfio-platform/bind","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Binding Devices to VFIO Driver to Allow Passthrough","id":"102","title":"Binding Devices to VFIO Driver to Allow Passthrough"},"103":{"body":"driverctl is an open-source device driver control utility for Linux systems. With driverctl it is easier to set up VFIO or change the driver for a device: export DEVICE=\"0001:01:00.0\"\ndriverctl --nosave set-override ${DEVICE} vfio-pci or for platform bus device passthrough export DEVICE=\"31d0000.serial\"\ndriverctl --nosave --bus platform set-override ${DEVICE} vfio-platform It is important to note that by default driverctl stores the set driver overrides and reactivates the override after a device reboot. With VFIO this can cause issues since some hardware devices may be required while the device starts up. This behavior can be effected by using the --nosave option as in the example above so that the override is reset back to default at reboot. The driverctl tool also features a way to list devices based on their bus type with the list-devices command. # Default usage of the tool is for pci bus\ndriverctl list-devices # Using command line option --bus platform sets the usage for platform bus\ndriverctl --bus platform list-devices driverctl can also reset the default driver by using the unset-override command. export DEVICE=\"0001:01:00.0\"\ndriverctl unset-override ${DEVICE}","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Using driverctl Package","id":"103","title":"Using driverctl Package"},"104":{"body":"This document describes the UART passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to guide more complex devices passthrough implementations.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough","id":"104","title":"NVIDIA Jetson AGX Orin: UART Passthrough"},"105":{"body":"There are eight UART units in the System on Chip (SoC) and two Server Base System Architecture (SBSA) UART units: The SoC UART units are named with an alphabetical suffix: UARTA, UARTB, UARTC, UARTD, UARTE, UARTF, UARTG, UARTH (which may be referred to as UART1, UART2, UART3, UART4, UART5, UART6, UART7, and UART8). The SBRA UART units are named UARTI and UARTJ. These units are pin-muxed with the UARTE and UARTC respectively. The following table describes the UART units mapping and connections: Device tree def. CPU pin SoC pin Connected to uarta: serial@3100000 UART1 UART1 40 pin header 3v3 uartb: serial@3110000 UART2 UART5 M.2 key E (WiFi card) uartc: serial@c280000 UART3 UART3 USB Debug ttyACM0 uartd: serial@3130000 UART4 UART4 Camera connector uarte: serial@3140000 Not mapped uartf: serial@3150000 Not mapped uartg: not on dtb UART7 UART7 Optional, USB Debug ttyACM1 uarth: serial@3170000 Not mapped uarti: serial@31d0000 UART5 UART2 USB Debug ttyACM1 uartj: serial@c270000 Not mapped Notes: The first column shows how the UART units are defined in the UART device tree file tegra234-soc-uart.dtsi [1] . The second and third columns show the CPU and SoC pin connections. Note that for UART2 and UART5 these are swapped. The pin mapping configuration is described in the file tegra234-mb1-bct-pinmux-p3701-0000.dtsi [2] . This device tree file is automatically generated by the macro Excel file Jetson_AGX_Orin_Series_Pinmux_Config_Template_1.5.xlsm which is available at the official Jetson Download Center as the Jetson AGX Orin Series Pinmux . The last column describes where the UART units are connected to the exterior. Only two UART units are connected to the micro USB debug interface. The UART7 is not connected by default but it can be connected to the debug interface ttyACM1 by swapping the fuse resistors (see Debug MCU page 7 on P3737_A04_Concept_schematics.pdf [3] ).","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UART Connections","id":"105","title":"UART Connections"},"106":{"body":"The UARTI unit was selected to do the first \"Hello world\" passthrough implementation as it does not show any dependencies on its device tree: uarti: serial@31d0000 { compatible = \"arm,sbsa-uart\"; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; };","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UARTI Selected for Passthrough","id":"106","title":"UARTI Selected for Passthrough"},"107":{"body":"To prepare the UARTI on the host for the passthrough: Modify the UARTI node in the tegra234-soc-uart.dtsi device tree file [1] : compatible: put a dummy driver associated to this node so that the kernel will not bind any driver to this UART unit. iommus: add the iommus field with the test stream ID TEGRA_SID_NISO1_SMMU_TEST which by default is not used by any other device. uarti: serial@31d0000 { compatible = \"arm,dummy\"; iommus = <&smmu_niso0 TEGRA_SID_NISO1_SMMU_TEST>; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; }; Include the modifications, compile the kernel to update the output DTB, and then flash it to the internal eMMC device tree A and B partitions with the following command: dd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p3\ndd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p6","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Host Device Tree","id":"107","title":"Host Device Tree"},"108":{"body":"The guest device tree is based on the device tree extracted from QEMU VM. To get the base QEMU device tree, run the following command: qemu-system-aarch64 -machine virt,accel=kvm,dumpdtb=virt.dtb -cpu host Add the passthrough devices inside the platform node to this device tree: platform@c000000 { interrupt-parent = <0x8001>; ranges = <0xc000000 0x00 0xc000000 0x2000000>; #address-cells = <0x01>; #size-cells = <0x01>; compatible = \"qemu,platform\\0simple-bus\"; uarti: serial@c000000 { compatible = \"arm,sbsa-uart\"; current-speed = <0x1c200>; interrupts = <0x00 0x70 0x04>; reg = <0x0c000000 0x10000>; status = \"okay\"; }; }; In this example, the uarti node was added to the platform node. For this node the interrupt number was replaced to 0x70 and reg address to the one that was obtained from the QEMU monitor command: info mtree -f .","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Guest Device Tree","id":"108","title":"Guest Device Tree"},"109":{"body":"To start the guest VM: Bind the UARTI to the VFIO driver: echo vfio-platform > /sys/bus/platform/devices/31d0000.serial/driver_override\necho 31d0000.serial > /sys/bus/platform/drivers/vfio-platform/bind The VFIO gives the user-level an access to the devices, in this case, QEMU. Connect the NVIDIA Jetson AGX Orin Debug USB to your PC and open the serial port ttyACM1 at 115200 bps. You can use picocom with the next command: picocom -b 115200 /dev/ttyACM1 Run the guest VM with the following QEMU command: qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-platform,host=31d0000.serial\\ -dtb uart.dtb \\ -append \"rootwait root=/dev/vda1 console=ttyAMA0\" When the guest VM is launched you can see the VM Linux command line in the opened ttyACM1 terminal. kernel_src/hardware/nvidia/soc/t23x/kernel-dts/tegra234-soc/tegra234-soc-uart.dtsi bootloader/t186ref/BCT/tegra234-mb1-bct-pinmux-p3701-0000.dtsi available in the BSP sources on: https://developer.nvidia.com/embedded/jetson-linux-r3521 Jetson_AGX_Orin_DevKit_Carrier_Board_Design_Files_A04_20221003/P3737_A04_Concept_schematics.pdf available in https://developer.nvidia.com/jetson-agx-orin-developer-kit-carrier-board-design-files-a04","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Starting Guest VM","id":"109","title":"Starting Guest VM"},"11":{"body":"Feature Status Reference Device Details Wayland-compositor 🚧 Orin, x86 Implemented for Lenovo X1 Chromium 🚧 Orin, x86 Implemented for Lenovo X1 Element 🚧 Orin, x86 On host Cloud Android (CVD) client application (GALA) 🚧 Orin, x86 Implemented for Lenovo X1 Virtualization control 🚧 All See vmd design .","breadcrumbs":"Features » Applications and VM Control","id":"11","title":"Applications and VM Control"},"110":{"body":"This document describes the PCIe passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to give an overview of passing through different PCIe devices and the limitations of PCIe in the board.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » NVIDIA Jetson AGX Orin: PCIe passthrough","id":"110","title":"NVIDIA Jetson AGX Orin: PCIe passthrough"},"111":{"body":"There are two (or actually three) PCIe slots in the Jetson AGX Orin board: One of the connectors is a full-size PCIe 8x slot located under a black plastic cover above the micro USB serial debug port on the side of the board. The other slot is a smaller M.2 slot that is located at the bottom of the board. By default, the slot is in use of the included Wi-Fi and Bluetooth module. The third slot is actually an NVMe slot which can be used to add an NVMe SSD to the board. For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. When using one of the slots: First and foremost, always turn off and disconnect any power sources from the board and its peripherals when connecting or disconnecting devices to any of the PCIe buses connect. When adding or removing devices to the board, there is always a risk of setting off an electrical discharge in one of the components which may damage the connected device or the board itself. Full-Size PCIe Slot The full-size PCIe connector is under the black plastic cover on one of the sides of the device. The cover is held in place with a fairly strong magnet. There is a small connector ribbon and a few delicate wires going from the board internals to a Wi-Fi antenna on the cover. TIP: Make sure to remove the cover carefully for not ripping the whole cover off along with the antenna cables. The PCIe slot is simular to one inside a desktop computer. One key difference: the Jetson AGX Orin board has limited 12V power output capabilities and can only output a maximum of 40W power to its PCIe slot. Regular desktop PCIe slot can output 75W at 12V so some more power-hungry PCIe cards [1] may not work with the Jetson AGX Orin board. There may also be a risk of damaging the board if a card tries to pull too much power from the PCIe socket. TIP: We recommend to check carefully the power requirements of a device before turning the device on. A good rule of thumb might be if the device has a cooler to actively cool it down then some care should be taken before starting to use the card. Some trials have been done with GPU devices that use at maximum 30-34W power. The devices seem to work well in Jetson AGX Orin, but it is difficult to say how much power the card actually pulls from the slot at any given time. No real performance or stress tests have been done but under usual GUI and simple 3d application usage the cards (NVIDIA Quadro P1000 and NVIDIA Quadro T600) seem to work fine. PCIe M.2 Slot The PCIe M.2 slot with key type A+E is at the bottom of the board. By default, this slot is in use of the internal Wi-Fi and Bluetooth card. There are different types of M.2 slots all of which are not compatible with one another. The slot in Jetson AGX Orin is type A+E, and it supports PCIe 2x and USB transport buses. PCIe M.2 NVMe for SSD The third slot is M.2 NVMe 2280 (22 mm width and 80 mm length) and can be used for NVMe SSD. Passing through this interface has not been tested as the SSD is in most cases used by the host.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » PCIe Slots in NVIDIA Jetson AGX Orin","id":"111","title":"PCIe Slots in NVIDIA Jetson AGX Orin"},"112":{"body":"As in the UART Passthrough , the default device tree requires some modifications. With the default configuration, the PCI devices are set to the same VFIO group as the PCI bus itself. The trouble here is that the PCI bus is a platform bus device which is a bit tricky to pass through to the guest. It is possible to pass through only the individual PCI devices and not the whole bus. To pass through individual PCI devices one by one, set the devices in their individual VFIO groups or remove the PCI bus from the same VFIO group: /* * Modify the 'pcie_c1_rp' pci-e bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the m2 pci device alone in the group. * This change is for the m2 pci-e \"wifi\" slot. */\n&pcie_c1_rp { /delete-property/ iommus;\n}; /* * Modify the 'pci_c5_rp' pci bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the pci device alone in the group. * This change is for the full size pci-e slot. */\n&pcie_c5_rp { /delete-property/ iommus;\n};","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Enabling PCIe Devices for VFIO","id":"112","title":"Enabling PCIe Devices for VFIO"},"113":{"body":"To set up the device for VFIO, unload the device driver and then replac it with the vfio-pci driver. The example below can be used for a device in the PCI bus 0001. The device 0001:01:00.0 in the first bus is the Jetson AGX Orin board with the M.2 Wi-Fi card. The full size PCI bus id is 0005. It is possible that a single PCI card contains multiple devices. In that case, all the devices need to be passed through together as they are in the same VFIO group. Usually the graphics card also contains some sound output device as a separate device. export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id In case of success, this device is bound to VFIO. The VFIO nodes are usually owned by the root and in some cases may be group accessible by the VFIO group. To use the VFIO devices, the user who starts QEMU needs access to the VFIO device node: # List of vfio device nodes\nls /dev/vfio/ # List of devices within each iommu group\nls /sys/kernel/iommu_groups//devices/ You can also check the kernel logs to know which device belongs to which VFIO IOMMU group.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Binding Device for VFIO","id":"113","title":"Binding Device for VFIO"},"114":{"body":"After binding a device to VFIO, you can access the device in a VM. To do so, use a command line argument (as in the example) for the PCI device to pass through to QEMU. It does not matter which VFIO node ID was assigned to the device earlier, as long as all the devices with the same VFIO node are passed through, and none of the devices in the same group is left behind. The QEMU command line argument for passthrough uses the PCIe device ID as identifier for the devices. Each device which is passed through needs its own QEMU -device argument as below: -device vfio-pci,host=\"0001:01:00.0\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Starting Guest VM","id":"114","title":"Starting Guest VM"},"115":{"body":"Modern PCI devices use the Message Signaled Interrupts (MSI) method to limit the need for physical hardware interrupt pins. As passing through PCI or any other devices is fairly new to QEMU, it seems MSI in ARM64 is not supported by QEMU [2] . To get interrupts to work in the guest, we need to signal the kernel to disable MSI for our passthrough device. There are two ways of doing it: To modify the host device tree by disabling MSI completely from the whole PCI bus. To disable MSI only from the guest by using the pci=nomsi kernel argument with QEMU. Disabling MSI is not required for the x86 QEMU guest as it has MSI support. The command below is provided only as a test example for passing through a PCI device for AArch64 [3] : qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-pci,host=0001:01:00.0\\ -append \"rootwait root=/dev/vda1 console=ttyAMA0 pci=nomsi\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » ARM64 PCI Device Interrupts","id":"115","title":"ARM64 PCI Device Interrupts"},"116":{"body":"The information above is enough for x86 and also for ARM64 processor architecture when using some simple or a bit older PCIe devices. A bit more complex PCIe device which has a larger internal RAM pool needs some modifications with QEMU sources. The problem with passing through such devices is that the memory address range reserved for PCIe devices is not large enough to map the internal memory of the PCI device. Some graphics cards have several gigabytes of internal RAM which needs to be accessible for the VM guest. You can extend the VIRT_PCIE_ECAM memory address range in the QEMU source code to allow mapping the whole PCIe device memory range. In most cases a few gigabytes is sufficient: diff --git a/hw/arm/virt.c b/hw/arm/virt.c\nindex ac626b3bef..d6fb597aee 100644\n--- a/hw/arm/virt.c\n+++ b/hw/arm/virt.c\n@@ -161,9 +161,10 @@ static const MemMapEntry base_memmap[] = { [VIRT_SECURE_MEM] = { 0x0e000000, 0x01000000 }, [VIRT_PCIE_MMIO] = { 0x10000000, 0x2eff0000 }, [VIRT_PCIE_PIO] = { 0x3eff0000, 0x00010000 },\n- [VIRT_PCIE_ECAM] = { 0x3f000000, 0x01000000 },\n+ /* ..Reserved 11Gb range for pcie = 11*1024*1024*1024b */\n+ [VIRT_PCIE_ECAM] = { 0x40000000, 0x2C0000000 }, /* Actual RAM size depends on initial RAM and device memory settings */\n- [VIRT_MEM] = { GiB, LEGACY_RAMLIMIT_BYTES },\n+ [VIRT_MEM] = { 0x300000000, LEGACY_RAMLIMIT_BYTES }, }; After these changes, compile QEMU and install it on the host system. An example of a power-hungry card is a graphics accelerator card. Our approach of using ARM as a VM host with passthroughs fairly new so it is hard to search for help or references online, but this bug qemu-system-aarch64 error seems to be close enough. The main hint of MSI not being fully supported yet by QEMU on ARM64 comes from the case when the device starts working only with MSI disabled from the guest kernel argument. It may require some changes for real usage.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » More Work for ARM64","id":"116","title":"More Work for ARM64"},"117":{"body":"","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » x86 PCIe Device Passthrough with crosvm","id":"117","title":"x86 PCIe Device Passthrough with crosvm"},"118":{"body":"As with other passthroughs, first, we need to set the target device to use VFIO driver. This can be done manually or by using the driverctl tool as below. Running driverctl requires root permissions. export BUS=\"0000:01:00.0\"\ndriverctl --nosave set-override ${BUS} vfio-pci Let's consider the example of starting crosvm. In some cases, crosvm may need privileged permissions to work properly. This applies specially for passthrough hardware devices as vfio devices are generally owned by the root user or the vfio group. For simplicity, it may be easier to run crosvm as the root user but it is be possible to set up correct permissions so that running as root is not needed. Crosvm expects the device's system path as its --vfio argument. The device identifier is different when comparing how passthrough devices are refrenced in QEMU. Using the guest-address option is not strictly required by the source documentation but it gives a bit more control for handling the passthrough device on the guest side. export BUS=\"0000:01:00.0\"\nexport GUESTBUS=\"00:08.0\"\n./target/debug/crosvm run \\ --mem=8192 \\ --block ./ubuntu-22.10.img \\ -i /boot/initrd.img-5.19.0-31-generic /boot/vmlinuz-5.19.0-31-generic \\ -p \"root=/dev/vda2 loglevel=8 earlycon earlyprintk debug\" \\ --vfio /sys/bus/pci/devices/${BUS},guest-address=${GUESTBUS},iommu=viommu","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Enabling PCIe Devices for VFIO with driverctl","id":"118","title":"Enabling PCIe Devices for VFIO with driverctl"},"119":{"body":"The driverctl tool can reset the original device driver afterward: export BUS=\"0000:01:00.0\"\ndriverctl unset-override ${BUS}","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Reseting Driver to Original State Afterwards","id":"119","title":"Reseting Driver to Original State Afterwards"},"12":{"body":"See discussion for the outline of next steps Outline of next phases","breadcrumbs":"Features » Next Steps","id":"12","title":"Next Steps"},"120":{"body":"Boot and Power Management Processor (BPMP) is the NVIDIA processor, which is designed for booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. The BPMP virtualization on the NVIDIA Jetson AGX Orin involves enabling VMs to access specific BPMP resources. This capability is crucial for passing through platform devices where control over resets and clocks configurations is required.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization","id":"120","title":"NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization"},"121":{"body":"Resource Access : The BPMP virtualization allows VMs to access and manage resources such as device clocks and resets. Foundation for Device Virtualization : This setup lays the groundwork for future virtualization of more complex devices like GPUs. Module Introduction : A new virtualization module is introduced, divided into common and host modules with a plan to add a guest module for NixOS-based guests. Device Tree Configurations : Modifications are made with patching to support virtualization features. Compatibility : The current implementation supports a Ghaf host with an Ubuntu guest.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Architectural Overview","id":"121","title":"Architectural Overview"},"122":{"body":"The current implementation includes a host configuration for the UARTA passthrough as a test case demonstrating the practical application of the BPMP virtualization. At the same time, the current implementation still requires manually built Ubuntu guest. Work continues to integrate microvm.nix declared guest that supports NVIDIA BPMP virtualization with the UARTA passthrough demo. This work is generally important for future NVIDIA Jetson platform bus GPU passthrough. With this feature it is possible to virtualize the NVIDIA-Jetson-integrated GPU connected to the platform bus.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Use Cases","id":"122","title":"Use Cases"},"123":{"body":"Enable NVIDIA BPMP virtualization on a Ghaf host for an NVIDIA Jetson-target using the following configuration options: hardware.nvidia = { virtualization.enable = true; passthroughs.uarta.enable = true;\n}; IMPORTANT: These options are integrated to NVIDIA Jetson Orin targets but disabled by default until the implementation is finished. Build the target and boot the image. You can write the image to an SSD for testing with a recent NVIDIA UEFI FW.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin","id":"123","title":"Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin"},"124":{"body":"","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Testing","id":"124","title":"Testing"},"125":{"body":"Check the bpmp-host device: [ghaf@ghaf-host:~]$ ls /dev | grep bpmp-host\nbpmp-host Check that vfio-platform binding is successful: ghaf@ghaf-host:~]$ ls -l /sys/bus/platform/drivers/vfio-platform/3100000.serial\nlrwxrwxrwx 1 root root 0 Dec 8 08:26 /sys/bus/platform/drivers/vfio-platform/3100000.serial -> ../../../../devices/platform/3100000.serial","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Host Testing","id":"125","title":"Host Testing"},"126":{"body":"UARTA is an UART unit with a port A connection. For more information, see UART Connections . Build a guest kernel according to UARTA passthrough instructions [1] and use the following script to start the VM: TIP: IMG is the kernel image and FS the rootfs. IMG=$1\nFS=$2 qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1G \\ -no-reboot \\ -kernel $IMG \\ -drive file=$FS,if=virtio,format=qcow2 \\ -net user,hostfwd=tcp::2222-:22 -net nic \\ -device vfio-platform,host=3100000.serial \\ -dtb virt.dtb \\ -append \"rootwait root=/dev/vda console=ttyAMA0\" With UARTA connected start Minicom on the working machine: minicom -b 9600 -D /dev/ttyUSB0 Test UARTA by echoing a string to the correct tty in the VM: echo 123 > /dev/ttyTHS0","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Guest for UARTA Testing","id":"126","title":"Guest for UARTA Testing"},"127":{"body":"NVIDIA Jetson AGX Orin: UART Passthrough [1] That documentation is in the bpmp-virt side repository, as that approach does not use microvm.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Related Topics","id":"127","title":"Related Topics"},"128":{"body":"microvm is the component defining a VM's launch services generated for systemd. It inputs a set of options mapped to the hypervisor command line call. Nevertheless, it may happen that some hypervisor options are not supported by microvm. For example, adding specific devices. This document considers such cases.","breadcrumbs":"Technologies » Hypervisor Options » Ghaf-Specific microvm Hypervisor Options","id":"128","title":"Ghaf-Specific microvm Hypervisor Options"},"129":{"body":"A VM is defined under Ghaf’s subdirectory microvmConfigurations/VM_NAME/default.nix, for example: modules/virtualization/microvm/netvm.nix\nhttps://github.com/tiiuae/ghaf/blob/main/modules/virtualization/microvm/netvm.nix This file contains hypervisor’s options for running the VM. For each hypervisor there is a bunch of microvm’s defined options: https://astro.github.io/microvm.nix/options.html The way they are processed can be found in corresponding .nix files (runners) in the astro/microvm.nix repository: crosvm.nix qemu.nix The formula for setting hypervisor option is microvm.option = value;. For example: microvm.mem = 512;\nmicrovm.vcpu = 2;","breadcrumbs":"Technologies » Hypervisor Options » Options Definitions","id":"129","title":"Options Definitions"},"13":{"body":"The main architectural concept of the Ghaf Platform is to break up the traditional monolithic structure to modularized components, virtual machines (VM). These VMs on hardened host OS implement the Ghaf edge virtualization platform. Embedded virtualization builds on cloud technologies in the development of end-to-end security. With hardware support for virtualization, we provide a hardened system of a small trusted computing base (TCB)—thin host—that enables isolation of use cases and their resources. Use cases are protected in guest virtual machines (VMs). Embedded targets are small devices (personal or headless) instead of high-performance cloud servers. Our scope is illustrated in the following diagram. For more information, see stack . Scope! If you are interested in why we do something this way instead of that way, see Architecture Decision Records . The Ghaf Platform components are used in reference configurations to build images for reference devices. For more information, see Reference Implementations .","breadcrumbs":"Architecture » Architecture","id":"13","title":"Architecture"},"130":{"body":"As a result of building the Ghaf tree, command lines for starting the VMs are generated. They reflect all parameters specified above—both those specified explicitly and defaults. They are located under the Ghaf’s /var/lib/microvms/ directory. ls /var/lib/microvms/memsharevm-vm-debug/current/bin microvm-balloon\nmicrovm-console\nmicrovm-run\nmicrovm-shutdown The command which starts the hypervisor is the microvm-run bash script. Here is a sample generated: #! /nix/store/96ky1zdkpq871h2dlk198fz0zvklr1dr-bash-5.1-p16/bin/bash -e\nexec '/nix/store/zsf59dn5sak8pbq4l3g5kqp7adyv3fph-qemu-host-cpu-only-7.1.0/bin/qemu-system-x86_64' '-\nname' 'memshare' '-M' 'microvm,accel=kvm:tcg,x-option-roms=off,isa-serial=off,pit=off,pic=off,rtc=off,\nmem-merge=on' '-m' '2512' '-cpu' 'host' '-smp' '17' '-machine' 'virt,accel=kvm' '-nodefaults' '-no-\nuser-config' '-nographic' '-no-reboot' '-serial' 'null' '-device' 'virtio-serial-device' '-chardev'\n'pty,id=con0' '-device' 'virtconsole,chardev=con0' '-chardev' 'stdio,mux=on,id=con1,signal=off' '-\ndevice' 'virtconsole,chardev=con1' '-device' 'virtio-rng-device' '-drive' 'id=root,format=raw,\nmedia=cdrom,file=/nix/store/xnnqb3sb1l4kbx7s0ijazph5r0c0xhx5-rootfs.squashfs,if=none,aio=io_uring' '-\ndevice' 'virtio-blk-device,drive=root' '-kernel' '/nix/store/ds5cmyby0p4ikw91afmrzihkz351kls7-linux-\n6.2/bzImage' '-append' 'console=hvc1 console=hvc0 reboot=t panic=-1 root=/dev/vda ro init=/init\ndevtmpfs.mount=0 stage2init=/nix/store/0mbhpna8hplbsaz1il3n99f0zincr4vs-nixos-system-memshare-\n22.11.20230310.824f886/init boot.panic_on_fail loglevel=4 regInfo=/nix/store\n/j8id92qsd58qjnzq4xz6v5l38rlpq6is-closure-info/registration' '-sandbox' 'on' '-qmp' 'unix:memshare.\nsock,server,nowait' '-device' 'virtio-balloon' '--option 1 --option 2' for the input parameters: microvm.hypervisor = \"qemu\"; Note that microvm sets several others. microvm.mem = 2000;\nmicrovm.balloonMem = 512;\nmicrovm.vcpu = 17;\nmicrovm.qemu.extraArgs = [ \"--option 1 --option 2\" ];","breadcrumbs":"Technologies » Hypervisor Options » Generated Hypervisor Start Commands","id":"130","title":"Generated Hypervisor Start Commands"},"131":{"body":"microvm may not supply parameters for all possible options as adding specific devices. Processing of all microvm configuration options is done in the mentioned above hypervisor’s runner .nix file. The runners support the extraArgs parameter. It allows setting any option in QEMU command line invocation. Its value is a list of strings. In this example the following extraArgs definition: microvm.qemu.extraArgs = [\n\"-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img\"\n\"-device virtio-pmem-pci,memdev=mem1,id=nv1\"\n]; results in the generated command line parameters: '-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img' '-device v\nirtio-pmem-pci,memdev=mem1,id=nv1' Support for the crosvm’s extraArgs parameter was added on April 7, 2023. Make sure to verify that your flakes.lock file refers to the proper version.","breadcrumbs":"Technologies » Hypervisor Options » Adding Option to Hypervisor Command Line","id":"131","title":"Adding Option to Hypervisor Command Line"},"132":{"body":"Ghaf Framework uses a CI/CD (Continuous Integration and Continuous Delivery) approach that aims to automate the process of building, testing, and deploying software. Our goal is to have the ability to deploy code quickly and safely: once a build is deployed, the next build undergoes testing, while the latest build is being coded. Currently, Continuous Deployment is not set up.","breadcrumbs":"Continuous Integration and Distribution » Continuous Integration and Distribution","id":"132","title":"Continuous Integration and Distribution"},"133":{"body":"CI/CD Architecture The software delivery pipeline consists of several stages: Contributors make changes in the code and create a pull/merge request to merge changes from one personal fork or branch into the upstream repository/branch. Builder Controller checks source code repositories for changes and fetches them. Builder Controller arranges builds on Remote Builders to make disk images and other release artifacts. After the building is done, Remote Builder sends disk images to Builder Controller to create provenance files and sign disk images and provenance files. On build failure, Builder Controller sends failure notifications to Message Service. Builder Controller uploads all build artifacts to Binary Cache and disk images to Web Server. Test Automation fetches disk images from Binary Cache and runs the hardware test on them. Test Automation uploads test reports to Web Server. Users can download images from Web Server: release images https://vedenemo.dev/files/releases/ images for testing https://vedenemo.dev/files/build_reports/ .","breadcrumbs":"Continuous Integration and Distribution » General Process","id":"133","title":"General Process"},"134":{"body":"To be aware of what is exactly in our software supply chain, it is reviewed for security issues and known vulnerabilities. Supply Chain Attacks Diagram We implement a supply chain security (SCS) — process of securing the machinery of the development, building, and release environment. That means that every component that a software artifact might be touching on its way from the developer to the consumer will be secured. The software artifact should be encrypted on each possible transition phase and its integrity should be verified at each destination. Each build should be accompanied by means of software bill of materials (SBOM) , identifying all the components that the software package consists of. SBOM containing reference to each dependency, its source and version together with provenance, containing build information are collected at the build time, signed, and used for vulnerability analysis during the next steps. The software artifact, SBOM, and provenance are signed by the build machinery at the build time, and the signature is verifiable at every destination of the package. The certificates that are used for signing and verification are provided by the public key infrastructure (PKI) system and are signed by the same root certificate authority (CA) . That allows you to confirm the author of the signature (build machinery) and guarantees that the package has not been tampered with since the build time.","breadcrumbs":"Supply Chain Security » Supply Chain Security","id":"134","title":"Supply Chain Security"},"135":{"body":"SLSA Framework Basic Security Measures SBOM Public Key Infrastructure Security Fix Automation","breadcrumbs":"Supply Chain Security » In This Chapter","id":"135","title":"In This Chapter"},"136":{"body":"Supply chain Levels for Software Artifacts (SLSA) is a security framework for tampering prevention, integrity improvement, and securing packages and infrastructure of a project. For more information about the SLSA framework, see the offical website https://slsa.dev .","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Framework","id":"136","title":"SLSA Framework"},"137":{"body":"Immutable reference: An identifier, guaranteed to always point to the same, immutable artifact. Provenance: Metadata about how an artifact was produced. Revision: An immutable, coherent state of a source.","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Terminology","id":"137","title":"SLSA Terminology"},"138":{"body":"One of the requirements for the solution is to reach SLSA Level 4 and even go beyond that. This requires a lot of process changes as well as technical work. The SLSA model consists of 4 levels, offering an incremental level of anti-tampering protection. Levels 1-3 represent milestones with certain integrity guarantees, whereas level 4 is an ideal end state. Level 0 means no SLSA compliance and no guarantees are given. Level 1 demands a fully scripted / automated build process and provenance generation. It offers basic confidence in the origin of the software but doesn’t provide any tamper resistance. Level 2 Introduces authenticated provenance generated by a hosted build at the same time demanding version control system usage. Provenance prevents tampering and offers trust in the build service. Level 3 offers auditability of the source and the integrity of the provenance. Much stronger tampering protection is provided by preventing specific classes of threats such as cross-build contamination. Level 4 requires two-peer source code review and a hermetic, reproducible build process. Overall Level 4 offers a high degree of confidence in the anti-tampering protection of the software. SLSA level is not transitive, thus level of the artifact is not dependent on the level of dependencies, which are expected to have their own SLSA levels. This makes it possible to build a Level 4 artifact from Level 0 dependencies.","breadcrumbs":"Supply Chain Security » SLSA Framework » Levels of Assurance","id":"138","title":"Levels of Assurance"},"139":{"body":"Requirements Level 1 Level 2 Level 3 Level 4 Source — Version controlled ✓ ✓ ✓ Source — Verified history ✓ ✓ Source — Retained indefinitely ✓ ✓ Source — Two-person reviewed ✓ Build — Scripted build ✓ ✓ ✓ ✓ Build — Build service ✓ ✓ ✓ Build — Build as code ✓ ✓ Build — Ephemeral environment ✓ ✓ Build — Isolated ✓ ✓ Build — Parameterless ✓ Build — Hermetic ✓ Build — Reproducible ○ Provenance — Available ✓ ✓ ✓ ✓ Provenance — Authenticated ✓ ✓ ✓ Provenance — Service generated ✓ ✓ ✓ Provenance — Non-falsifiable ✓ ✓ Provenance — Dependencies complete ✓ Common — Security ✓ Common — Access ✓ Common — Superusers ✓ ✓ — required ○ — required unless justified otherwise empty cell — not required","breadcrumbs":"Supply Chain Security » SLSA Framework » Requirements","id":"139","title":"Requirements"},"14":{"body":"Architectural Variants Architecture Decision Records Minimal Host Networking VM Platform Bus for Rust VMM Stack","breadcrumbs":"Architecture » In This Chapter","id":"14","title":"In This Chapter"},"140":{"body":"","breadcrumbs":"Supply Chain Security » Basic Security Measures » Basic Security Measures","id":"140","title":"Basic Security Measures"},"141":{"body":"The source code security is based on the fact that the source code is two-person reviewed, version controlled, and the history is verified and retained indefinitely.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Source Code / Version Control Security","id":"141","title":"Source Code / Version Control Security"},"142":{"body":"All the commits to repositories must be GPG-signed. This can be achieved by enabling GPG commit signatures in the config: git config --global commit.gpgsign true For more detailed information, see the Signing commits article of the GitHub Docs.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Commit Signing","id":"142","title":"Commit Signing"},"143":{"body":"In the case of GitHub the following settings should be considered: Require pull request reviews before merging (req: two-person reviewed source). Require status checks before merging. Require conversation resolution before merging. Require signed commits. Deletions should be forbidden (req: immutable history).","breadcrumbs":"Supply Chain Security » Basic Security Measures » Branch Protection","id":"143","title":"Branch Protection"},"144":{"body":"Software signing is an important measure to validate the author and ensure that the code has not been altered on the way from the developer to the customer. Nix tooling is offering means to sign the derivations using libsodium with EdDSA, however, as the modular system is assumed, scripts need to be developed to support signing mechanisms in an absence of Nix tooling. By default, the software image is signed only at the binary cache per request. Which leaves the path from Hydra to the binary cache unsecured. The problem can be resolved in two ways: Enabling the image signing on Hydra Shared Nix Store","breadcrumbs":"Supply Chain Security » Basic Security Measures » Software Signing","id":"144","title":"Software Signing"},"145":{"body":"Enabling the image signing on Hydra requires some extra work due to the lack of well-documented support of image signing at Hydra at the time of writing this document. As already mentioned, NixOS is using libsodium-based EdDSA solution for image signing. So similar scripts can be implemented. For example, in Python by using existing libsodium bindings, such as PyNaCl. Enabling Image Signing on Hydra","breadcrumbs":"Supply Chain Security » Basic Security Measures » Enabling Image Signing on Hydra","id":"145","title":"Enabling Image Signing on Hydra"},"146":{"body":"The shared NixStore option is rather straightforward if Hydra is combined with the binary cache. This kind of setup is lacking the extra transition path. Thus the packages signed by the binary cache will be served straight from the Hydra NixStore. Shared NixStore Solution","breadcrumbs":"Supply Chain Security » Basic Security Measures » Shared Nix Store","id":"146","title":"Shared Nix Store"},"147":{"body":"All the data should be transported over secure encrypted channels. Since all the transportation is done over TCP/IP protocol stack, it is possible to use native solutions like TLS to secure the traffic between the nodes. Version 1.2 is a minimum requirement.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Data Encryption in Transit","id":"147","title":"Data Encryption in Transit"},"148":{"body":"Software bill of materials (SBOM) is a formal, machine-readable document that provides a list of software components that make up the target software and all its dependencies.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » Software Bill of Materials (SBOM)","id":"148","title":"Software Bill of Materials (SBOM)"},"149":{"body":"There are three main delivery formats and specifications for SBOM: CycloneDX, SPDX, and SWID. CycloneDX is an open-source standard with origins in the OWASP community. The specification's original focus is on security. There's a large growing community and open source tooling that support CycloneDX format. SPDX is also a product of an open-source community, with the original focus on licensing. SPDX is run and maintained by Linux Foundation . Similarly to CycloneDX, many open-source tools support the SPDX format. SWID is a standard that originates from NIST . SWID tags aim to help organizations create accurate software inventories. While SWID can serve as an SBOM too, it is not as widely used SBOM format in open source as the two other specifications.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Formats and Specifications","id":"149","title":"SBOM Formats and Specifications"},"15":{"body":"The main scope of the Ghaf platform is edge virtualization. However, to support modular development and testing of the platform, variants are supported with the following definitions: Default A default variant. Supports minimal host , GUI VM [1] and netvm . May host other VMs. For more information, see Stack . Headless A variant with minimal host and netvm . May host other VMs but does not have GUI VM or graphics stack on a host. Host only A variant with minimal host only . A user can manually install software to a host, including VMs (if supported by hardware). No virtualization A variant for hardware with no support for virtualization. May run any software, similar to popular Linux distributions, but cannot support guest virtual machines. May host any software deployed directly on a host. Variant Name Headless Graphics VMs Devices Default No GUI VM [1] Supported Jetson, generic x86 Headless Yes No Supported Jetson, generic x86 Host Only Yes No May be supported but not included Jetson, generic x86 No Virtualization Yes or no Native on host Not supported Raspberry Pi, RISC-V [1] As of early 2023, the graphics stack is deployed on a host to support application development. Work is ongoing to define the GUI VM and isolate graphics with GPU passthrough.","breadcrumbs":"Architecture » Architectural Variants » Architectural Variants","id":"15","title":"Architectural Variants"},"150":{"body":"Ghaf framework will use SBOMs for: Vulnerability identification: automatic correlation of SBOM against known vulnerabilities. Vulnerability remediation: automatic process to suggest fixes for identified vulnerabilities. Dependency analysis: categorization of open-source and closed source software dependencies. Dependency analysis: creation of a directed acyclic graph License compliance: know and comply with the license obligations. Market signal: publish SBOM together with other release artifacts.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Usage in Ghaf","id":"150","title":"SBOM Usage in Ghaf"},"151":{"body":"Ghaf is based on Nix, therefore, the selected SBOM tooling needs to support creating SBOMs for nix artifacts. As part of the Ghaf project, we have created the sbomnix tool to support SBOM generation for Ghaf and, more generally, for any Nix-based targets. For more details on the SBOM tooling in Ghaf, see sbomnix and nixgraph . sbomnix supports CycloneDX as well as SPDX SBOM specification.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Tooling in Ghaf","id":"151","title":"SBOM Tooling in Ghaf"},"152":{"body":"https://ntia.gov/page/software-bill-materials https://slsa.dev/blog/2022/05/slsa-sbom https://fossa.com/blog/software-bill-of-materials-formats-use-cases-tools https://www.legitsecurity.com/blog/what-is-an-sbom-sbom-explained-in-5-minutes","breadcrumbs":"Supply Chain Security » Software Bill of Materials » References","id":"152","title":"References"},"153":{"body":"In the SCS context, a public key infrastructure (PKI) term refers to a system for the creation, storage, and distribution of digital certificates which are used to verify that a particular key belongs to a certain entity. PKI creates and manages a hierarchical set of digital certificates which map public keys to certain entities. Storage and revocation methodologies are to be defined. The PKI of SCS should consist of: Certificate authority (CA) for storing, issuing, and signing the digital certificates. Registration authority (RA) for requesting entity identity verification. Central directory for the secure storage of the keys. Certificate Management System (CMS) for managing access to stored certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Public Key Infrastructure","id":"153","title":"Public Key Infrastructure"},"154":{"body":"PCA enables the creation of private certificate authority hierarchies, consisting of Root and Subordinate CAs. It issues end-entity X.509 certificates, that are used for: Encrypted TLS communication channels (data encryption in transit) Code and image signing PCA can be established in the cloud or on-premises. Initially, the OpenSSL-based solution deployed on-premises is assumed, however, some of the target projects might consider using commercial cloud solutions.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Private Certificate Authority (PCA)","id":"154","title":"Private Certificate Authority (PCA)"},"155":{"body":"On-premises solution can be further improved by adding a Hardware Security Module (HSM). It is a physical device for managing cryptographic material such as digital keys. HSM can be also used to perform cryptographic operations such as digital signing, encryption, and decryption. The HSM contains one or more Secure Cryptoprocessors that are dedicated microprocessors optimized for carrying out cryptographic operations. One example of affordable HSM solutions is YubiHSM developed by Yubico.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Hardware Security Module","id":"155","title":"Hardware Security Module"},"156":{"body":"The following HSM solutions are considered for the Ghaf project: YubiHSM2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM The following table provides feature comparison of the proposed solutions: Since the feature list is quite extensive, the table is limited to the features that are either planned to be used in Ghaf or might benefit the project in the future. Feature YubiHSM 2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM Secure key storage ✓ ✓ ✓ ✓ ECC ✓ ✓ ✓ ✓ EdDSA (ed25519) ✓ ? ECDSA ✓ ✓ ✓ ✓ RSA ✓ ✓ ✓ PKCS#11 interface ✓ ✓ ✓ ✓ Network shareable ✓ ✓ M of N wrap rule ✓ ✓ Tamper evident audit logging ✓ Storage capacity 128KB, 255xAny ECC 76KB, 35xECC-512 9.7Kb, 16 slots Price 650EUR (VAT 0%) 99 EUR FOSS HW Costs YubiHSM2 is the leading solution considering its cryptographic capabilities. However, taking into account quite modest needs of SCS, NitrokeyHSM2 represents an adequate option. The main benefit of YubiHSM2 from SCS perspective is its native support of EdDSA-curve25519, which is the one that NixOS is using for package signing. Thus YubiHSM2 could be used directly with NixOS. However, as the package doesn't change in transit from the Build System to the Consumer, usage of inbuilt tooling is not always necessary. BreadboardHSM solution is based on Microchip ATECC608B (TrustFLEX + cryptoauthlib + gtutls), though development work is still ongoing at the time of writing this document. The SoftHSMv2 and BreadboardHSM are taken for comparison showing what can be achieved using FOSS variants.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » HSM Variants for Consideration","id":"156","title":"HSM Variants for Consideration"},"157":{"body":"CA usually consists of: Root CA - the root of trust of the entire PKI, for issuing and signing the certificates used by other CAs. Subordinate CA for issuing end-entity certificates. There are three types of hierarchies: one-tier, two-tier, and three-tier. The hierarchy can be chosen based on the target project's needs and complexity. A one-tier hierarchy is not considered for any production usage due to the low security, as the compromise of a single CA leads to a compromise of the entire PKI. In a two-tier hierarchy, the Root CA and issuing (Subordinate) CAs are separated for increasing the security level. This is the simplest production level hierarchy allowing to keep Root CA at the most secure and restrictive levels, yet making subordinate CA access slightly more permissive. This hierarchy is most likely sufficient for most of the target projects. In a three-tier CA, an intermediate CA is placed between the Root CA and the Subordinate (issuing) CA. This is done to separate the Root CA from low-level CA operations. The middle layer (intermediate CA) is only used to sign Subordinate CAs that issue the end-entity certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » CA Hierarchy Options","id":"157","title":"CA Hierarchy Options"},"158":{"body":"The following diagram describes the proposed CA for the SCS. The three-tier CA is chosen based on the high-security level and the potential need to scale it to several projects, later on, keeping the main control under the same Root CA. Proposed CA","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Proposed CA Hierarchy","id":"158","title":"Proposed CA Hierarchy"},"159":{"body":"The Nix community is able to identify and fix security issues relatively quickly. At the same time, the community process to ensure critical security fixes are included in nixpkgs is unclear or unspecified. Indeed, Ghaf should not solely rely on the community to provide security fixes but take action to understand the vulnerabilities that impact Ghaf and take an active role in fixing such issues.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Security Fix Automation","id":"159","title":"Security Fix Automation"},"16":{"body":"Architecturally significant decisions are recorded as architecture decision records (ADR) . The Ghaf platform decision log: Decision Record Status Minimal Host Proposed. netvm—Networking Virtual Machine Proposed, partially implemented for development and testing. Platform Bus for RustVMM Proposed, WIP. To create an architectural decision proposal, open a pull request and use the decision record template . Contributions to the Ghaf architecture decisions are welcome.","breadcrumbs":"Architecture » Architecture Decision Records » Architecture Decision Records","id":"16","title":"Architecture Decision Records"},"160":{"body":"The following image captures the high-level process we propose to identify and remediate the security vulnerabilities that impact Ghaf: Security Fix Automation The process consists of two parts - automated and manual : Automated vulnerability analysis is a scripted job triggered on a daily basis in Ghaf CI/CD. It consists of the following actions: (1) Locally (temporarily) update the Ghaf flake lock file. Temporary lock file update is needed so the Ghaf dependencies are up-to-date with the nixpkgs input Ghaf is pinned to. Otherwise, the automated analysis results would also include vulnerabilities that have been fixed in nixpkgs upstream since the last Ghaf flake lock update. (2) Run automated vulnerability analysis tooling for each relevant Ghaf build target. For Ghaf, being Nix-based, we propose to use nix_secupdates for automated vulnerability analysis. As a result of this step, the tooling generates an auto-triaged vulnerability report, which will be the main input for the manual analysis. Manual vulnerability analysis is a manual process, which is also executed on daily basis. (3) Using the auto-triaged vulnerability report from the previous step, manually analyze the automation results comparing the new results to earlier day's results from the relevant build. (4) If there are any fixed issues compared to the last analyzed report, initiate the Ghaf flake lock file update for relevant inputs to include the vulnerability fixes from the nixpkgs upstream to relevant Ghaf branches. (5) If there are any new vulnerabilities compared to the last analyzed report, manually analyze each vulnerability in detail. If the issue requires a fix, create a pull request to push the changes to relevant nixpkgs branches. The process described above is an upstream-first, with the main benefit of eliminating the need to maintain our own vulnerability fix patches on top of nixpgks in Ghaf. This process will also benefit the nixpkgs community, contributing to the overall security improvement for the packages Ghaf depends on.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Semi-Automated Upstream-First Process","id":"160","title":"Semi-Automated Upstream-First Process"},"161":{"body":"Ghaf is released 4 times per year at the end of each quarter. Additional releases may be made as per request. Release numbering scheme: ghaf-yy.mm .","breadcrumbs":"Release Notes » Ghaf Release Notes","id":"161","title":"Ghaf Release Notes"},"162":{"body":"Release ghaf-23.12 Release ghaf-23.09 Release ghaf-23.06 Release ghaf-23.05","breadcrumbs":"Release Notes » In This Chapter","id":"162","title":"In This Chapter"},"163":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release ghaf-23.12","id":"163","title":"Release ghaf-23.12"},"164":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.12","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release Branch","id":"164","title":"Release Branch"},"165":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.12 » Supported Hardware","id":"165","title":"Supported Hardware"},"166":{"body":"NixOS update to 23.11: NixOS 23.11 released! Further modularization of the Ghaf framework: Ghaf as Library: Templates . CLI-based installer. Lenovo X1 Carbon Gen 11: Configurable PCI and USB devices passthrough. Network Manager: support from GUIVM to NETVM. Windows VM support. Added Ghaf icons and the background image. Secure Boot is disabled by default. The hardened host kernel baseline is disabled by default. Initial hardened hypervisor integration is disabled by default. NVIDIA Jetson Orin: Configurable PCI passthrough. Jetpack baseline software updates and fixes. Initial OP-TEE and TEE Proxy support. Cross-compilation of the ARM targets (NVIDIA) on the x86 server. SLSA v1.0 level 2 compatible build. Development, testing, and performance tooling improvements.","breadcrumbs":"Release Notes » Release ghaf-23.12 » What is New in ghaf-23.12","id":"166","title":"What is New in ghaf-23.12"},"167":{"body":"Fixed bugs that were in the ghaf-23.09 release: Chromium AppVM does not boot up on X1. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes). Copy and paste text from or to Chromium AppVM does not work. Copy text from the address bar does not work as well. Personal security keys cannot be created. Cannot move the Element window by dragging with the mouse.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Bug Fixes","id":"167","title":"Bug Fixes"},"168":{"body":"Issue Status Comments The GALA application does not work In Progress Will be fixed in the next release. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Copying text from the browser address bar to another application does not work In Progress Under investigation Windows launcher application does not work on NUC and AGX In Progress Workaround: launch Windows VM from the command line. Time synchronization between host and VMs does not work in all scenarios In Progress Under investigation The taskbar disappears after the external display is disconnected from Lenovo X1 In Progress Under investigation Closing and re-opening a deck lid of a X1 laptop with running Ghaf causes instability In Progress Workaround: Keep a deck lid of a laptop open while working with Ghaf. Applications do not open from icons when NETVM is restarted In Progress Workaround: Restart AppVMs.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Known Issues and Limitations","id":"168","title":"Known Issues and Limitations"},"169":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Environment Requirements","id":"169","title":"Environment Requirements"},"17":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal Host","id":"17","title":"Minimal Host"},"170":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.12/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.12_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.12_Lenovo_X1_Carbon_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.12_Nvidia_Orin_AGX_cross-compiled-no-demoapps.tar.xz [1] , ghaf-23.12_Nvidia_Orin_AGX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_AGX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_Nvidia_Orin_NX_cross-compiled-no-demoapps [1] .tar.xz, ghaf-23.12_Nvidia_Orin_NX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_NX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit [1] no-demoapps images do not include Chromium, Zathura, and GALA applications.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Installation Instructions","id":"170","title":"Installation Instructions"},"171":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release ghaf-23.09","id":"171","title":"Release ghaf-23.09"},"172":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.09","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release Branch","id":"172","title":"Release Branch"},"173":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.09 » Supported Hardware","id":"173","title":"Supported Hardware"},"174":{"body":"New supported target hardware: NVIDIA Jetson Orin NX Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11 Modularization of the Ghaf framework: Ghaf as Library: Templates . NVIDIA Jetson Orin NX Ethernet passthrough. Lenovo X1 Carbon Gen 11: Graphics passthrough to GUIVM. Launching Application VMs through GUIVM (Chromium, Gala, and Zathura). Paravirtualized audio. Webcam passthrough. Touchpad passthrough. Cross-compilation of the ARM targets (NVIDIA) on the x86 server (with demo applications excluded).","breadcrumbs":"Release Notes » Release ghaf-23.09 » What is New in ghaf-23.09","id":"174","title":"What is New in ghaf-23.09"},"175":{"body":"Fixed bugs that were in the ghaf-23.06 release: NVIDIA Jetson AGX Orin: Cannot open Windows launcher via shortcut or command line. No Windows launcher in x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Bug Fixes","id":"175","title":"Bug Fixes"},"176":{"body":"Issue Status Comments Chromium AppVM does not boot up on X1 In Progress Intermittent timing issue, under investigation. The GALA app does not work In Progress Will be fixed in the next release. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes) In Progress Advice: be patient or, if in hurry, press power key for 15 sec. Copy and paste text from or to Chromium AppVM does not work In Progress Element cannot be opened on NVIDIA AGX Orin HW on the host Will not Fix Applications on the host will not be supported in the longer term. Cannot move the GALA/Element window by dragging with the mouse In Progress Workaround: press Windows key when moving the mouse. Personal security keys cannot be created In Progress Workaround: use another device to create security keys. No audio in a USB headset when running the application on the host Will not Fix Audio on a host is not supported. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Windows launcher application does not work In Progress Workaround: launch Windows VM from the command line.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Known Issues and Limitations","id":"176","title":"Known Issues and Limitations"},"177":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Environment Requirements","id":"177","title":"Environment Requirements"},"178":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.09/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.09_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.09_Lenovo_X1_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.09_Nvidia_Orin_AGX.tar.xz, ghaf-23.09_Nvidia_Orin_NX.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.09_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Release Notes » Release ghaf-23.09 » Installation Instructions","id":"178","title":"Installation Instructions"},"179":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release ghaf-23.06","id":"179","title":"Release ghaf-23.06"},"18":{"body":"Proposed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Status","id":"18","title":"Status"},"180":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.06","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release Branch","id":"180","title":"Release Branch"},"181":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.06 » Supported Hardware","id":"181","title":"Supported Hardware"},"182":{"body":"Ghaf Modularization (partially done): general description and context on how to use: Ghaf as Library: Templates the development status: https://github.com/tiiuae/ghaf/tree/ghaf-23.06/modules . SLSA v1.0 level provenance file included. Ghaf version information (query). NixOS is updated to 23.05: NixOS 23.05 released!","breadcrumbs":"Release Notes » Release ghaf-23.06 » What is New in ghaf-23.06","id":"182","title":"What is New in ghaf-23.06"},"183":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Bug Fixes","id":"183","title":"Bug Fixes"},"184":{"body":"Known since ghaf-23.05: Personal security keys cannot be created. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account Workaround for x86: create a separate user account for Element. Element cannot be opened on NVIDIA Jetson AGX Orin. Cannot move the GALA/Element window by dragging with the mouse. No windows-launcher in the x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Known Issues and Limitations","id":"184","title":"Known Issues and Limitations"},"185":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release ghaf-23.05","id":"185","title":"Release ghaf-23.05"},"186":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.05","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release Branch","id":"186","title":"Release Branch"},"187":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.05 » Supported Hardware","id":"187","title":"Supported Hardware"},"188":{"body":"This is the first release of Ghaf including support for: the Wayland display server protocol (on the host) the graphical interface with Weston Window Manager (on the host) the Chromium browser (on the host) Element, a Matrix-based chat client (on the host) the Google Android look-alike (GALA) application Ghaf Framework is under active development, some of the features may not be stable.","breadcrumbs":"Release Notes » Release ghaf-23.05 » What is New in ghaf-23.05","id":"188","title":"What is New in ghaf-23.05"},"189":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin. Prevents logging into GALA and Element applications. Personal security keys cannot be created: Prevents running Android in the Cloud. Workaround: use another device to create security keys. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account. Workaround: create a separate user account for Element.","breadcrumbs":"Release Notes » Release ghaf-23.05 » Known Issues and Limitations","id":"189","title":"Known Issues and Limitations"},"19":{"body":"Ghaf uses the default NixOS configuration as a baseline to build the target image. The default NixOS configuration is targeted for more general use with the inclusion of multiple packages that are not supporting the Ghaf design target of a minimal TCB to protect the host. Depending on the flexibility of the NixOS configuration, Ghaf minimal host may require new development to support the requirements. This structure in the Ghaf host configuration imports the NixOS minimal profile which suits the minimal TCB better. Even better, the modular declarative profile enables the further optimization of the minimal TCB while supporting other profiles that suit the evaluation of other objectives such as feasibility studies of additional functionality, security and performance.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Context","id":"19","title":"Context"},"190":{"body":"The Ghaf Platform can be used in various different environments, configurations, and hardware to serve several purposes. Ghaf is not a fully-fledged product but a module that can serve as a centerpiece to enable secure edge systems.","breadcrumbs":"Showcases » Showcases","id":"190","title":"Showcases"},"191":{"body":"Secure Laptop demonstrates how our open-source Ghaf Platform can increase the security offering for laptops through hardware-backed isolation by means of virtualization. We use Lenovo ThinkPad X1 Carbon Gen 11 as a target device. In this showcase, the following applications are running in isolated VMs: Windows VM Browser VM that can be used as an application launcher. For example, MS Office suite running in the Browser environment. All data is stored in the enterprise cloud. PDF Viewer VM. No data can be extracted or shared locally. Cloud Android VM for secure communication. Each VM operates independently and securely within its own isolated environment, without interference from other VMs running on the same physical hardware. Additionally beneath the surface Ghaf contains two hidden system VMS: Networking VM GUI VM Ghaf Secure Laptop","breadcrumbs":"Showcases » Secure Laptop","id":"191","title":"Secure Laptop"},"192":{"body":"Running Windows VM on Ghaf Running Cuttlefish on Ghaf","breadcrumbs":"Showcases » In This Chapter","id":"192","title":"In This Chapter"},"193":{"body":"You can run Windows 11 in a VM on Ghaf with NVIDIA Jetson Orin AGX (ARM64) or Generic x86 device. This method uses QEMU as VMM. For information on how to build and run a Ghaf image, see Build and Run . Windows 11 in VM","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM on Ghaf","id":"193","title":"Running Windows 11 in VM on Ghaf"},"194":{"body":"Depending on the device: For Generic x86, download Windows 11 ISO ( Win11_22H2_English_x64v2.iso ) from the Microsoft website. For NVIDIA Jetson Orin AGX (ARM64), use your Microsoft account to join the Windows Insider Program . On the Windows 11 on Arm Insider Preview page, select the Windows 11 Client Arm64 Insider Preview (Canary) - Build 25324 build and the language to download a VHDX image file. Copy the image to an external USB drive. Connect the USB drive to the device with the latest version of Ghaf installed, and mount it to some folder. sudo mkdir /mnt\nsudo mount /dev/sda /mnt WARNING: [For NVIDIA Jetson Orin AGX] Make sure to use a fresh VHDX image file that was not booted in another environment before.","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Getting Windows 11 Image","id":"194","title":"Getting Windows 11 Image"},"195":{"body":"Running Windows 11 in VM on ARM64 Device (NVIDIA Jetson Orin AGX) In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. TIP: If after pressing Shift+F10 the command window is not displayed, try to switch between opened windows by using Alt+Tab. Running Windows 11 in VM on Generic x86 Device On x86_64 device Windows 11 VM can be launched with either an ISO image or QCOW2: For an ISO image, the script creates an empty QCOW2 image in the same directory which is used as a system disk in the VM. After installing Windows 11, run the script for the QCOW2 image. Do the following: In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Win11_22H2_English_x64v2.iso When the VM starts booting press any key to boot from a CD. In order to bypass Windows 11 system requirements, open cmd with Shift+F10 and type regedit. In HKEY_LOCAL_MACHINE\\SYSTEM\\Setup, right-click New > Key and type LabConfig. For this key create two DWORD (32-bit) parameters: Name: BypassTPMCheck, value 1. Name: BypassSecureBootCheck, value 1. TIP: [For Ghaf running on a laptop] If after pressing Shift+F10 the command window is not displayed, try again with the Fn key (Shift+Fn+F10) or switch between opened windows by using Alt+Tab. Install Windows 11 in the VM. Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. After the installation is completed the script is launched with the QCOW2 image: windows-launcher ./win11.qcow2","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM","id":"195","title":"Running Windows 11 in VM"},"196":{"body":"Instead of running Windows launcher from the command line it is possible to launch the Windows 11 VM by clicking the corresponding icon in the Weston taskbar. When you click it for the first time, you will see a file selection dialog. Once Windows 11 image has been selected, it saves the path to the ~/.config/windows-launcher-ui.conf configuration file and launches the VM. Next time, the VM will be immediately launched with one click. In order to use a different image instead of the saved one, delete the configuration file: rm ~/.config/windows-launcher-ui.conf","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Using UI to Launch Windows 11 VM","id":"196","title":"Using UI to Launch Windows 11 VM"},"197":{"body":"It is possible to pass additional parameters to QEMU when running Windows launcher from the command line. NVIDIA Jetson Orin AGX (ARM64) example: windows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX -serial stdio Generic x86 example: windows-launcher ./win11.qcow2 -serial stdio","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Passing Additional Parameters to QEMU","id":"197","title":"Passing Additional Parameters to QEMU"},"198":{"body":"Cuttlefish is a configurable virtual Android device (virtual-machine based Android emulator) that can run both remotely (using third-party cloud offerings such as Google Cloud Engine) and locally (on Linux x86 machines). For more information about Cuttlefish, see the official Cuttlefish Virtual Android Devices documentation. You can run Android as a VM on Ghaf for testing and development purposes using NVIDIA Jetson Orin AGX (ARM64) or Generic x86.","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Android Cuttlefish Virtual Device on Ghaf","id":"198","title":"Running Android Cuttlefish Virtual Device on Ghaf"},"199":{"body":"Download host_package (includes binaries and scripts that must be run on the host machine to set up and run the Cuttlefish virtual device) and aosp_cf_phone-img (a system image) files from the Android CI server and copy them to Ghaf: For NVIDIA Jetson Orin AGX (ARM64): cvd-host_package.tar.gz and aosp_cf_arm64_phone-img-9970479.zip For Generic x86: cvd-host_package.tar.gz and aosp_cf_x86_64_phone-img-9970479.zip Download a host package from the same build as the image. Make sure Internet connection is working in Ghaf. If the system gets an IP address but the DNS server is not responding, set the correct date and time. [For x86_64 only] Install the required packages: NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix-env -i python3 openssl bash unzip Create some hackish links that are required for running Cuttlefish: sudo ln -s $(which mv) /bin/mv\nsudo ln -s $(which bash) /bin/bash\nsudo mkdir -p /usr/lib/cuttlefish-common/bin/\nsudo touch /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo chmod 755 /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo groupadd -f cvdnetwork\nsudo usermod -aG cvdnetwork $USER\nsudo usermod -aG kvm $USER\nsudo su ghaf Change directory to the one that contains host package and image files and extract them: For NVIDIA Jetson Orin AGX (ARM64): tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_arm64_phone-img-9970479.zip For Generic x86: tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_x86_64_phone-img-9970479.zip [For x86_64 only] Extra steps to fix missing dependencies: Find ld-linux-x86-64.so.2 and create a link in /lib64: sudo find /nix/store -name ld-linux-x86-64.so.2\nsudo mkdir /lib64\nsudo ln -s /nix/store/dg8mpqqykmw9c7l0bgzzb5znkymlbfjw-glibc-2.37-8/lib/ld-linux-x86-64.so.2 /lib64 Find libdrm.so.2 in the /nix/store and copy it to the lib64 directory where the host package was extracted: sudo find /nix/store -name libdrm.so.2\ncp /nix/store/2jdx0r0yiz1k38ra0diwqm5akb0k1rjh-libdrm-2.4.115/lib/ ./lib64","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Installing Cuttlefish","id":"199","title":"Installing Cuttlefish"},"2":{"body":"The Ghaf Platform development is focused on the transition to a modular architecture for edge devices. Products such as secure phones, drones, laptops, and other communication devices have unique challenges in their respective hardware and software ecosystems. Enabling the integration of individual technology stacks into an organizational framework can be a challenging task. The Ghaf Platform is designed to ease this process and enable research to overcome a number of challenges.","breadcrumbs":"About Ghaf » Ghaf Platform Applications","id":"2","title":"Ghaf Platform Applications"},"20":{"body":"Following table describes the development requirements of minimal host. All requirements originate from TII SSRC unless otherwise noted. Scope further defines: target configuration: R for release, D for debug architectural variant : V for virtualization supporting variant, A for all, including No Virtualization Compliance states the progress of requirement compliance as follows: D for Designed, design requirement from TII SSRC for analysis and evaluation. I for Implemented, design requirement met with possible, limitations documented under Consequences . P for Proposed, raised for discussion but not yet designed. M for Met, the requirement is reviewed and approved at technology readiness level 4 . ID Requirement Description Scope Compliance MH01 Defined in nix Host declaration in nix R&D,A I MH02 Reduced profile Remove unnecessary R, V I MH03 No networking Host has no networking R, V D MH04 No graphics Host has no GUI stack R, V D MH05 No getty Host has no terminal R, V P MH06 No nix tooling Only /nix/store, no nix R, V P MH07 Minimal defconfig Host kernel is minimized R, V D MH08 Update via adminvm A/B update outside host R, V P MH09 Read-only filesystem Mounted RO, integrity checked R, V P This list of requirements is not yet comprehensive and may be changed based on findings of further analysis as stated in the following section.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Requirements","id":"20","title":"Requirements"},"200":{"body":"Go to the directory with exctacted host package and image files and run Cuttlefish: HOME=$PWD ./bin/launch_cvd -report_anonymous_usage_stats=n It will take some time to load. There should be the following messages in the console when the VM is booted and ready to use: VIRTUAL_DEVICE_DISPLAY_POWER_MODE_CHANGED\nVIRTUAL_DEVICE_BOOT_STARTED\nVIRTUAL_DEVICE_BOOT_COMPLETED\nVirtual device booted successfully","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Cuttlefish","id":"200","title":"Running Cuttlefish"},"201":{"body":"Run the Chromium browser by clicking on the corresponding icon in Weston and navigate to https://localhost:8443 . Ignore a warning about the SSL certificate (“Your connection is not private“) and click Advanced > Proceed to 127.0.0.1 (unsafe) . Click the cvd-1 Connect button. A new tab with an Android VM window will be opened. [Optionally] You can close the browser and use the following command to open a standalone window with an Android VM: chromium-browser --enable-features=UseOzonePlatform --ozone-platform=wayland --new-window --app=https://127.0.0.1:8443/client.html?deviceId=cvd-1","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Connecting to Cuttlefish Device","id":"201","title":"Connecting to Cuttlefish Device"},"202":{"body":"This is a glossary of terms and abbreviations developed by the Ghaf team. Abbreviation is a shortened form of a word or phrase. Usually is used to save space and time, to avoid repetition of long words and phrases. The styling of abbreviations is inconsistent and includes several possible variations. Some abbreviations are formed by omitting all but the first few letters of a word. Such abbreviations usually end in a period: Mr. for mister, Oct. for October. When abbreviations are formed from the initial letters of a phrase, they are categorized as either initialisms or acronyms : With initialisms , each letter is pronounced separately. For example: FBI for Federal Bureau of Investigation, CIA for Central Intelligence Agency, CD for Compact Disk, and also OK for Okay, ‘orl korrekt‘ that is a misspelling of \"all correct\". Initialisms cannot be pronounced as words. Acronyms are another type of abbreviation formed from the initial letters but that are pronounced as if they were words themselves. For example: ROFL for ‘rolling on the floor laughing’, FEMA for Federal Emergency Management Agency, NATO for North Atlantic Treaty Organization. All acronyms are abbreviations, but not all abbreviations are acronyms. ASAP that comes from ‘as soon as possible’ and appt (for appointment) are both considered abbreviations, but only ASAP is an acronym.","breadcrumbs":"Glossary » Glossary","id":"202","title":"Glossary"},"203":{"body":"Articles (a, an, the) are common with initialisms. The indefinite article should be chosen according to the first sound—not the first letter: ‘A’ is correct before initialisms beginning with a consonant sound, including a vowel pronounced as a ‘w’ or ‘y’ sound. For example: ‘a NASA launch’, but ‘NASA launches take place’. When an initialism begins with a vowel sound (including silent consonants or a consonant pronounced with an initial vowel sound), ‘an’ should be used instead. For example, ‘read about an FBI raid’. Acronyms not require articles except when they are used adjectivally. For example: ‘the patient was diagnosed with AIDS’, but ‘the AIDS patient’; ‘the NASA launch takes place’. So, read the abbreviation aloud: it may be either an initialism or an acronym. Focus on the sounds, not on the letters: ‘ an unidentified flying object’ but ‘ a UFO’ as it pronounced “a YOO-ef-OH” (/ˌjuːɛfˈəʊ/). More examples: a EULA (“YOO-luh”), a LAN router, an XML file, an HTML page.","breadcrumbs":"Glossary » Appropriate Use of Articles before Abbreviations","id":"203","title":"Appropriate Use of Articles before Abbreviations"},"204":{"body":"If you do not find the term or abbreviation you are looking for, share your questions using GitHub Issues . Wikipedia is not a dictionary. Groups of terms and abbreviations: Project Related Core Concepts SCS Related","breadcrumbs":"Glossary » Trivia","id":"204","title":"Trivia"},"205":{"body":"","breadcrumbs":"Glossary » Project Related","id":"205","title":"Project Related"},"206":{"body":"The project code name that represents the Ghaf tree. Source: https://connectwithnature.ae/knowledge-hub/ghaf-tree","breadcrumbs":"Glossary » Ghaf","id":"206","title":"Ghaf"},"207":{"body":"Continuous Integration and Continuous Delivery is a Ghaf software development lifecycle. Continuous Integration refers to regularly integrating code changes into a shared repository, where they are automatically tested and verified. Continuous Delivery—software is released in short iterations. Currently, Continuous Deployment is not set up. Continuous Deployment—code is deployed to customers automatically.","breadcrumbs":"Glossary » CI/CD","id":"207","title":"CI/CD"},"208":{"body":"Secure Systems Research Center is a global center of excellence in the development of end-to-end security and resilience for cyber-physical and autonomous systems. SSRC is a part of TII. Source: https://www.tii.ae/secure-systems","breadcrumbs":"Glossary » SSRC","id":"208","title":"SSRC"},"209":{"body":"Technology Innovation Institute is a UAE-based research center that aims to lead global advances in artificial intelligence, autonomous robotics, quantum computing, cryptography and quantum communications, directed energy, secure communication, smart devices, advanced materials, and propulsion and space technologies. Source: https://www.tii.ae/","breadcrumbs":"Glossary » TII","id":"209","title":"TII"},"21":{"body":"This ADR adopts a custom developed minimal profile using nixpkgs. It reduces both image and root partition size by eliminating the host OS content per requirements and implements a minimal TCB. The current implementation of NixOS overridden. For more information on a minimal host profile, see minimal.nix . With the progress of implementing the requirements, the minimal host customization will be illustrated.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Decision","id":"21","title":"Decision"},"210":{"body":"","breadcrumbs":"Glossary » Core Concepts","id":"210","title":"Core Concepts"},"211":{"body":"An Architecture Decision (AD) is a justified software design choice that addresses a functional or non-functional requirement that is architecturally significant. An Architectural Decision Record (ADR) captures a single AD and its rationale; the collection of ADRs created and maintained in a project constitute its decision log. Source: https://adr.github.io/","breadcrumbs":"Glossary » ADR","id":"211","title":"ADR"},"212":{"body":"Boot and Power Management Processor. The NVIDIA processor provides a set of hardware functions that support booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. Source: NVIDIA Orin Series System-on-Chip, Technical Reference Manual, Version: 1.2, Date: 29-September-2023","breadcrumbs":"Glossary » BPMP","id":"212","title":"BPMP"},"213":{"body":"A board support package is a collection of software used to boot and run the embedded system.","breadcrumbs":"Glossary » BSP","id":"213","title":"BSP"},"214":{"body":"The Dynamic Host Configuration Protocol is a network protocol that automatically sets IP addresses and other attributes to enable information transfer between network nodes. Source: Computer Networks: A Systems Approach, https://book.systemsapproach.org/internetworking/basic-ip.html#host-configuration-dhcp","breadcrumbs":"Glossary » DHCP","id":"214","title":"DHCP"},"215":{"body":"A direct memory access is a process in which data may be moved directly to or from the main memory of a computer system by operations not under the control of the central processing unit. Source: https://www.collinsdictionary.com/dictionary/english/direct-memory-access","breadcrumbs":"Glossary » DMA","id":"215","title":"DMA"},"216":{"body":"embedded MultiMediaCard","breadcrumbs":"Glossary » eMMC, e-MMC","id":"216","title":"eMMC, e-MMC"},"217":{"body":"end-user license agreement","breadcrumbs":"Glossary » EULA","id":"217","title":"EULA"},"218":{"body":"firmware","breadcrumbs":"Glossary » FW","id":"218","title":"FW"},"219":{"body":"The Google Android Look Alike application. Mobile client application for connecting to a Cloud Android device in Secured Google Cloud Platform VMs. Users see a remotely rendered Android phone desktop on their own device screen and interact with the Cloud Android device like the real mobile device. All application processing runs in the cloud.","breadcrumbs":"Glossary » GALA","id":"219","title":"GALA"},"22":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Consequences","id":"22","title":"Consequences"},"220":{"body":"graphical user interface","breadcrumbs":"Glossary » GUI","id":"220","title":"GUI"},"221":{"body":"An intrusion detection system (also intrusion prevention system or IPS) monitors network traffic for suspicious activity and report when such activity is discovered.","breadcrumbs":"Glossary » IDS","id":"221","title":"IDS"},"222":{"body":"input–output memory management unit","breadcrumbs":"Glossary » IOMMU","id":"222","title":"IOMMU"},"223":{"body":"The Internet Protocol is a set of rules for communication over the Internet, such as sending email, streaming video, or connecting to a website.","breadcrumbs":"Glossary » IP","id":"223","title":"IP"},"224":{"body":"An Instruction Set Architecture is part of the abstract model of a computer that defines how the CPU is controlled by the software. Source: https://www.arm.com/glossary/isa","breadcrumbs":"Glossary » ISA","id":"224","title":"ISA"},"225":{"body":"Kernel-based Virtual Machine, an open-source virtualization technology built into Linux.","breadcrumbs":"Glossary » KVM","id":"225","title":"KVM"},"226":{"body":"Kernel-based Virtual Machine Secured, an open-source project. Source: https://github.com/jkrh/kvms","breadcrumbs":"Glossary » KVMS","id":"226","title":"KVMS"},"227":{"body":"memory management unit","breadcrumbs":"Glossary » MMU","id":"227","title":"MMU"},"228":{"body":"Message Signaled Interrupts","breadcrumbs":"Glossary » MSI","id":"228","title":"MSI"},"229":{"body":"A Linux distribution based on the Nix package manager and build system. Source: https://nixos.wiki/wiki/Overview_of_the_NixOS_Linux_distribution","breadcrumbs":"Glossary » NixOS","id":"229","title":"NixOS"},"23":{"body":"Ghaf minimal host module is implemented in nix modules . Currently, host and VM declarations are implemented using microvm.nix but this is not strict requirement for ghaf release mode declarations if the limitations or dependencies of microvm.nix do not comply with other requirements. This may require separate release mode custom nix declarations to support flexibility with microvm.nix in debug mode.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Defined in nix (MH01)","id":"23","title":"Defined in nix (MH01)"},"230":{"body":"original equipment manufacturer","breadcrumbs":"Glossary » OEM","id":"230","title":"OEM"},"231":{"body":"operating system","breadcrumbs":"Glossary » OS","id":"231","title":"OS"},"232":{"body":"Peripheral Component Interconnect","breadcrumbs":"Glossary » PCI","id":"232","title":"PCI"},"233":{"body":"Peripheral Component Interconnect Express","breadcrumbs":"Glossary » PCIe","id":"233","title":"PCIe"},"234":{"body":"A generic and open source machine emulator and virtualizer. Source: QEMU’s documentation","breadcrumbs":"Glossary » QEMU","id":"234","title":"QEMU"},"235":{"body":"The Server Base System Architecture specifies a hardware system architecture, based on Arm 64-bit architecture, that server system software, for example operating systems, hypervisors, and firmware can rely on. Source: Arm® Server Base System Architecture 7.1 Platform Design Document","breadcrumbs":"Glossary » SBSA","id":"235","title":"SBSA"},"236":{"body":"A stock keeping unit, is a unique code used by sellers to identify and track products.","breadcrumbs":"Glossary » SKU","id":"236","title":"SKU"},"237":{"body":"A system on chip, a microchip that contains the necessary electronic circuits for a fully functional system on a single integrated circuit (IC).","breadcrumbs":"Glossary » SoC","id":"237","title":"SoC"},"238":{"body":"solid-state drive","breadcrumbs":"Glossary » SSD","id":"238","title":"SSD"},"239":{"body":"Trusted computing base defines the security requirements by providing separation of users and data or resources. Source: Department of Defense trusted computer system evaluation criteria, DoD 5200.28-STD, 1985","breadcrumbs":"Glossary » TCB","id":"239","title":"TCB"},"24":{"body":"Initial Ghaf minimal profile host size reduction is implemented with metrics on host total size and break down of size of the largest dependencies. Based on the metrics, further analysis is needed on several key modules including, but not limited to, kernel, systemd and nixos.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Reduced profile (MH02)","id":"24","title":"Reduced profile (MH02)"},"240":{"body":"Transport Layer Security, a security protocol.","breadcrumbs":"Glossary » TLS","id":"240","title":"TLS"},"241":{"body":"An universal asynchronous receiver-transmitter, a hardware communication protocol.","breadcrumbs":"Glossary » UART","id":"241","title":"UART"},"242":{"body":"Unified Extensible Firmware Interface is a specifications that defines a new model for the interface between personal-computer operating systems and platform firmware. Source: Unified Extensible Firmware Interface Forum","breadcrumbs":"Glossary » UEFI","id":"242","title":"UEFI"},"243":{"body":"user interface","breadcrumbs":"Glossary » UI","id":"243","title":"UI"},"244":{"body":"Virtual Function I/O Source: https://docs.kernel.org/driver-api/vfio.html","breadcrumbs":"Glossary » VFIO","id":"244","title":"VFIO"},"245":{"body":"virtual machine","breadcrumbs":"Glossary » VM","id":"245","title":"VM"},"246":{"body":"Virtual Machine Manager","breadcrumbs":"Glossary » VMM","id":"246","title":"VMM"},"247":{"body":"zero trust architecture, zero trust security model","breadcrumbs":"Glossary » ZTA","id":"247","title":"ZTA"},"248":{"body":"","breadcrumbs":"Glossary » SCS Related","id":"248","title":"SCS Related"},"249":{"body":"certificate authority","breadcrumbs":"Glossary » CA","id":"249","title":"CA"},"25":{"body":"Currently ghaf host profile for both release and debug target has networking. Requirement of no networking on release target requires declarative host configuration where: The release target host kernel is built without networking support. Networking must be enabled for debug target. The release target host user space has no networking tools nor configurations. Access to tools on host must be enabled for debug target. To support development of configuration changes between release and debug target, the debug target must support networking. This also supports No Virtualization-variant development in which networking must be enabled. The exception to no networking requirement is the virtual machine manager control socket from host to guest(s). The amount of required kernel configuration dependencies and impact to different VMMs must be further analyzed. No networking has impact on how vmd adminvm to host communication is implemented. With no networking, shared memory is proposed. No networking may have impact on how the guest-to-guest inter virtual machine communication configuration must implemented with VMMs. This must be further analyzed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No networking (MH03)","id":"25","title":"No networking (MH03)"},"250":{"body":"Certificate Management System","breadcrumbs":"Glossary » CMS","id":"250","title":"CMS"},"251":{"body":"Edwards-curve Digital Signature Algorithm","breadcrumbs":"Glossary » EdDSA","id":"251","title":"EdDSA"},"252":{"body":"The GNU Privacy Guard (also GnuPG) is a complete and free implementation of the OpenPGP standard as defined by RFC4880. Source: https://gnupg.org/","breadcrumbs":"Glossary » GPG","id":"252","title":"GPG"},"253":{"body":"A hardware security module is a crypto processor designed for the crypto key lifecycle protection.","breadcrumbs":"Glossary » HSM","id":"253","title":"HSM"},"254":{"body":"Cryptography and SSL/TLS Toolkit. Source: https://www.openssl.org/","breadcrumbs":"Glossary » OpenSSL","id":"254","title":"OpenSSL"},"255":{"body":"A public key infrastructure is the framework of encryption and cybersecurity.","breadcrumbs":"Glossary » PKI","id":"255","title":"PKI"},"256":{"body":"A Python binding to libsodium, which is a fork of the Networking and Cryptography library. Source: https://pypi.org/project/PyNaCl/","breadcrumbs":"Glossary » PyNaCl","id":"256","title":"PyNaCl"},"257":{"body":"registration authority","breadcrumbs":"Glossary » RA","id":"257","title":"RA"},"258":{"body":"A software bill of materials is a machine-readable document of all software components, open source licenses, and dependencies in a target software.","breadcrumbs":"Glossary » SBOM","id":"258","title":"SBOM"},"259":{"body":"A supply chain security is a process of securing the machinery of the development, building, and release environment.","breadcrumbs":"Glossary » SCS","id":"259","title":"SCS"},"26":{"body":"Ghaf minimal host profile for release target has no graphics. Graphics will be compartmentalized to GUIVM. All graphics and display output related components and dependencies, including kernel drivers, must be removed from kernel configuration. Those are to be passed through to GUIVM.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No graphics (MH04)","id":"26","title":"No graphics (MH04)"},"260":{"body":"A security chip that performs encryption and decryption operations.","breadcrumbs":"Glossary » secure cryptoprocessor","id":"260","title":"secure cryptoprocessor"},"261":{"body":"An immutable blob of data; primarily refers to software, but SLSA can be used for any artifact. Source: https://slsa.dev/spec/v0.1/terminology","breadcrumbs":"Glossary » software artifact","id":"261","title":"software artifact"},"262":{"body":"Supply chain Levels for Software Artifacts is a security framework, a check-list of standards and controls to prevent tampering, improve integrity, and secure packages and infrastructure in your projects, businesses or enterprises. Source: https://slsa.dev/","breadcrumbs":"Glossary » SLSA","id":"262","title":"SLSA"},"263":{"body":"Our experience in research, studies and lessons learned activities: i.MX 8QM platform bus ethernet passthrough System installation","breadcrumbs":"Research Notes » Research Notes","id":"263","title":"Research Notes"},"264":{"body":"The i.MX 8QuadMax (i.MX 8QM, iMX8QM, imx8qm) passthrough host setup relies as much as possible on the default i.MX 8QM MEK (imx8qm-mek) device tree configuration. Some guidance on what is required for passthrough to work on i.MX 8 can be found in the XEN device trees. This document provides a detailed description of what has been done and why. For the more impatient readers, the example device tree files for i.MX 8QM guest and host with Ethernet passthrough are available here: Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts NOTE 20.12.2022: At the current state, the passthrough is not completely functional. The Ethernet device (fec1) or even both devices (fec1 and fec2) can be set up in the guest. The devices respond and seem functional, the device node does activate, the drivers load correctly, the power state of the device changes to active, and the link state of the Ethernet connection seems to change correctly. However, for some reason, no actual Ethernet data packages go through the Ethernet adapter. The most visible issue is that no interrupts come to the Ethernet devices. See the following topics: i.MX 8QM Ethernet Passthrough Host Kernel Configuration Host Device Tree Explained Other Notes About Passthrough Changes in U-Boot Running Platform Device Passthrough in QEMU Guest Setup Adding Devices to Guest Some Final Touches for Guest Devices Compiling the Device Tree Source to Binary Form Compiling for Guest Compiling for Host Running QEMU with Passthrough Platform Devices","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » i.MX 8QM Ethernet Passthrough","id":"264","title":"i.MX 8QM Ethernet Passthrough"},"265":{"body":"Kernel version 5.10 was used during the setup. For the passthrough to work, a few kernel configuration options need to be added to the default i.MX 8QM configuration: CONFIG_VFIO_PLATFORM=y CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y CONFIG_VFIO_PLATFORM=y CONFIG_ARM_SMMU_V3_SVA=y","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Kernel Configuration","id":"265","title":"Host Kernel Configuration"},"266":{"body":"The default Freescale i.MX 8QM MEK configuration is included and then updated to get the Ethernet device passthrough configuration added on top of the original device configuration. There are two problems with using the i.MX 8 XEN configuration as a reference. The first issue is that the configuration between XEN and KVM do not map one to one. The second issue is more specific to Ethernet passthrough, as i.MX 8 XEN configuration does not set up passthrough for Ethernet so most of the configuration needs to be figured out from scratch. #include \"freescale/imx8qm-mek.dts\"\n/ { domu { /* * There are 5 MUs, 0A is used by Dom0, 1A is used * by ATF, so for DomU, 2A/3A/4A could be used. * SC_R_MU_0A * SC_R_MU_1A * SC_R_MU_2A * SC_R_MU_3A * SC_R_MU_4A * The rsrcs and pads will be configured by uboot scu_rm cmd */ #address-cells = <1>; #size-cells = <0>; doma { compatible = \"xen,domu\"; /* * The name entry in VM configuration file * needs to be same as here. */ domain_name = \"DomU\"; /* * The reg property will be updated by U-Boot to * reflect the partition id. */ reg = <0>; /* * Initialize and activate the Mailbox MU2A at boot */ init_on_rsrcs = < IMX_SC_R_MU_2A >; /* * Mark the Mailbox and Ethernet adapter power domains available to guest */ rsrcs = < IMX_SC_R_MU_2A IMX_SC_R_ENET_0 >; /* * Mark the pads for ethernet adapter fec1 available to guest */ pads = < IMX8QM_ENET0_MDIO IMX8QM_ENET0_MDC IMX8QM_ENET0_REFCLK_125M_25M IMX8QM_ENET0_RGMII_TXC IMX8QM_ENET0_RGMII_TX_CTL IMX8QM_ENET0_RGMII_TXD0 IMX8QM_ENET0_RGMII_TXD1 IMX8QM_ENET0_RGMII_TXD2 IMX8QM_ENET0_RGMII_TXD3 IMX8QM_ENET0_RGMII_RXC IMX8QM_ENET0_RGMII_RX_CTL IMX8QM_ENET0_RGMII_RXD0 IMX8QM_ENET0_RGMII_RXD1 IMX8QM_ENET0_RGMII_RXD2 IMX8QM_ENET0_RGMII_RXD3 IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETB IMX8QM_SCU_GPIO0_07 IMX8QM_SPI0_CS1 IMX8QM_SPI2_CS1 IMX8QM_SAI1_RXFS IMX8QM_SAI1_RXC >; /* GPIOS as default from imxqm XEN device tree */ gpios = <&lsio_gpio1 13 GPIO_ACTIVE_LOW>, <&lsio_gpio1 19 GPIO_ACTIVE_LOW>, <&lsio_gpio1 27 GPIO_ACTIVE_LOW>, <&lsio_gpio1 28 GPIO_ACTIVE_LOW>, <&lsio_gpio1 30 GPIO_ACTIVE_LOW>, <&lsio_gpio4 1 GPIO_ACTIVE_LOW>, <&lsio_gpio4 3 GPIO_ACTIVE_LOW>, <&lsio_gpio4 6 GPIO_ACTIVE_LOW>, <&lsio_gpio4 9 GPIO_ACTIVE_LOW>, <&lsio_gpio4 11 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 19 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 22 GPIO_ACTIVE_LOW>, <&lsio_gpio4 25 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 26 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 27 GPIO_ACTIVE_LOW>, <&lsio_gpio4 29 GPIO_ACTIVE_LOW>; }; };\n}; /* * Add iommus property for the passed through device nodes to allow setting up vfio * The device type \"compatible\" is changed to prevent the system from loading a * driver the the adapter. * Most other properties are removed from the adapter. */\n&fec1 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ phy-handle; /delete-property/ pinctrl-names; /delete-property/ pinctrl-0;\n}; /* * The device is not being used by guest. Just to make sure it is removed from iommu * group and disabled. */\n&fec2 { /delete-property/ iommus; status = \"disabled\";\n}; /* * Timer device for fec1\n&enet0_lpcg { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ pinctrl-0;\n}; &enet1_lpcg { /delete-property/ iommus; status = \"disabled\";\n}; &lsio_mu2 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\";\n}; /*\n* Remove iommus properties from other devices which are not passed through for Network VM\n*/\n&usdhc1 { /delete-property/ iommus;\n}; &usdhc2 { /delete-property/ iommus;\n}; &usdhc3 { /delete-property/ iommus;\n}; &sata { /delete-property/ iommus;\n}; &usbotg3 { /delete-property/ iommus;\n}; &usbotg3_cdns3 { /delete-property/ iommus;\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Device Tree Explained","id":"266","title":"Host Device Tree Explained"},"267":{"body":"All devices which belong to the same VFIO/IOMMU group need to be passed through to the guest. To prevent the device from being initialized by the host, change the device-compatible property to a dummy such as \"fsl,dummy\". The device status need needs to be \"okay\" for the device node to be available. If U-Boot finds devices that appear in the doma rsrcs that contains the properties listed below, the device will get removed from the DTB: power-domains clocks clock-names assigned-clocks assigned-clock-rates pinctrl-0","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Other Notes About Passthrough","id":"267","title":"Other Notes About Passthrough"},"268":{"body":"In our host device tree, we defined a couple of \"rsrcs\" resources to be handed over to the guest system. The ownership of these registers needs to be transferred to the guest after loading our device tree and before the actual boot. This can be done in U-Boot with a command: scu_rm dtb ${fdt_addr} The easiest way to accomplish this automatically during boot is to add the \"scu_rm\" to the default i.MX 8QM U-Boot \"boot_os\" command and save the changes as below: setenv boot_os 'scu_rm dtb ${fdt_addr}; booti ${loadaddr} - ${fdt_addr};'\nsaveenv","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Changes in U-Boot","id":"268","title":"Changes in U-Boot"},"269":{"body":"Before you start QEMU, the passedthrough devices need to be bind to the VFIO driver. In some cases, the default driver needs to be unbind before the device can be bind to VFIO. However, in this case, all devices were changed to use the dummy device type in the device tree, so the step below is not required for this setup. echo 5d1d0000.mailbox > /sys/bus/platform/devices/5d1d0000.mailbox/driver/unbind\necho 5b040000.ethernet > /sys/bus/platform/devices/5b040000.ethernet/driver/unbind\necho 5b230000.clock-controller > /sys/bus/platform/devices/5b230000.clock-controller/driver/unbind The VFIO driver allows user-level access to the devices. Binding required devices to VFIO can be done as below: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After binding the devices to VFIO so it is possible to pass the devices to QEMU using \" -device vfio-platform \" arguments as below. The order in which the device arguments are given to QEMU may have an effect on some device properties such as interrupts. -device vfio-platform,host=5b230000.clock-controller\n-device vfio-platform,host=5b040000.ethernet\n-device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running Platform Device Passthrough in QEMU","id":"269","title":"Running Platform Device Passthrough in QEMU"},"27":{"body":"Ghaf host in release mode must have no terminals (TTYs) to interact with. In the current state of development, this cannot be enabled yet and has minimum requirement of system logging outside the host. Proposed design to approach this is requirement is to enable getty declaratively only in a debug serial terminal under modules/development .","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No getty (MH05)","id":"27","title":"No getty (MH05)"},"270":{"body":"Before starting the virtual machine with passed-through devices, we need to define our virtual machine device tree. One way of gaining a template for our QEMU device tree is by starting our QEMU instance and requesting a dump of its device tree in the DTB format as below. DTB is a binary format of the device tree so we also need to use the command line tool device tree compiler dtc to convert the binary device tree to a more human-friendly device tree source format. Converting the device tree to source format may give a few warnings of missing or unrecognized properties and such but that is normal. qemu-system-aarch64 \\ -M virt,gic-version=host,dumpdtb=virt.dtb -enable-kvm -nographic # Convert binary to source device tree format\ndtc -I dtb -O dts virt.dtb > virt.dts This will provide a \" virt.dts \" file which can be used as a base for adding our passedthrough devices. The U-Boot device tree may change based on the U-Boot version, so the guest device tree may need some maintenance every now and then.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Guest Setup","id":"270","title":"Guest Setup"},"271":{"body":"The platform devices which are going to get passed through should be added to the QEMU device tree platform bus section. In this case, the main devices are fec1 , enet0_lpcg and lsio_mu2 . At the time of writing, the platform bus address in QEMU is \" c000000 \" but that can be changed within the following code (needs recompiling QEMU) or it might change during some the QEMU code update. platform@c000000 { compatible = \"qemu,platform\\0simple-bus\"; interrupt-parent = <0x8001>; #address-cells = <0x02>; #size-cells = <0x02>; /* Devices register remapping // ranges = <0xc000000 0x00 0xc000000 0x2000000>; ranges = <0x00 0x5b230000 0x00 0xc000000 0x00 0x10000>, <0x00 0x5b040000 0x00 0xc010000 0x00 0x10000>, <0x00 0x5d1d0000 0x00 0xc020000 0x00 0x10000>; /* * Fec1 device configuration * Mostly the same that was set in the original host device configuration * The original interrupts can be left here as reference but they are updated at the end of config */ fec1: ethernet@5b040000 { reg = <0x00 0x5b040000 0x00 0x10000>; interrupts = , , , ; clocks = <&enet0_lpcg 4>, <&enet0_lpcg 2>, <&enet0_lpcg 3>, <&enet0_lpcg 0>, <&enet0_lpcg 1>; clock-names = \"ipg\", \"ahb\", \"enet_clk_ref\", \"ptp\", \"enet_2x_txclk\"; assigned-clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_CLKDIV>; assigned-clock-rates = <250000000>, <125000000>; fsl,num-tx-queues=<1>; fsl,num-rx-queues=<1>; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Fec1 devices clock controller device configuration * Mostly the same that was set in the original host device configuration * The actual clocks are nor configured so those need to be added to guest */ enet0_lpcg: clock-controller@5b230000 { compatible = \"fsl,imx8qxp-lpcg\"; reg = <0x00 0x5b230000 0x00 0x10000>; #clock-cells = <1>; clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&conn_axi_clk>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_TXCLK>, <&conn_ipg_clk>, <&conn_ipg_clk>; bit-offset = <0 4 8 12 16 20>; clock-output-names = \"enet0_lpcg_timer_clk\", \"enet0_lpcg_txc_sampling_clk\", \"enet0_lpcg_ahb_clk\", \"enet0_lpcg_rgmii_txc_clk\", \"enet0_lpcg_ipg_clk\", \"enet0_lpcg_ipg_s_clk\"; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Mailbox device for Fec1 (and SCU) * The host needs its own Mailbox (lsio_mu1 by default) and SCU * The original interrupt can be left here as reference but that is updated at the end of config */ lsio_mu2: mailbox@5d1d0000 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; reg = <0x00 0x5d1d0000 0x00 0x10000>; interrupts = ; #mbox-cells = <0x02>; status = \"okay\"; };\n}; The actual devices which were passed through may have some dependencies (such as clocks) which also need to be configured in the guest for the main devices to work properly. In most cases, they can be just copy-pasted from the original host configuration with a few minor alterations. Required dependencies need a bit of manual labor and depend on case to case. The main key is to go through the whole original device tree and list out device node names that are used by the passedthrough devices. This may require several passes as the dependencies may also contain some dependencies of their own. On top of the requirements, it is good also to check if the passedthrough devices are used by some other devices. Some devices may be used through a controller, such as lsio_mu2 is used by the main system control unit scu . In this case, the dependencies consist of several clock devices and their controller and also the i.MX 8 system control unit SCU device with its internals. The assisting devices can be added just before the start \" platform@c000000 \" bus configuration section: /** * Several clocks and a regulator copied from original host config. **/\nclk_dummy: clock-dummy { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <0>; clock-output-names = \"clk_dummy\";\n}; xtal32k: clock-xtal32k { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <32768>; clock-output-names = \"xtal_32KHz\";\n}; xtal24m: clock-xtal24m { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <24000000>; clock-output-names = \"xtal_24MHz\";\n}; reg_fec2_supply: fec2_nvcc { compatible = \"regulator-fixed\"; regulator-name = \"fec2_nvcc\"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>;\n//\tgpio = <&max7322 0 GPIO_ACTIVE_HIGH>; enable-active-high; status = \"okay\";\n}; conn_axi_clk: clock-conn-axi { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <333333333>; clock-output-names = \"conn_axi_clk\";\n}; conn_ahb_clk: clock-conn-ahb { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <166666666>; clock-output-names = \"conn_ahb_clk\";\n}; conn_ipg_clk: clock-conn-ipg { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <83333333>; clock-output-names = \"conn_ipg_clk\";\n}; conn_bch_clk: clock-conn-bch { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <400000000>; clock-output-names = \"conn_bch_clk\";\n}; /** * imx8 SCU device and its content with changed to use \"lsio_mu2\" mailbox * The original scu used lsio_mu1 so we need to use one of lsio_mu2 to lsio_mu4 **/\nscu { compatible = \"fsl,imx-scu\"; mbox-names = \"tx0\", \"rx0\", \"gip3\"; mboxes = <&lsio_mu2 0 0 &lsio_mu2 1 0 &lsio_mu2 3 3>; pd: imx8qx-pd { compatible = \"fsl,imx8qm-scu-pd\", \"fsl,scu-pd\"; #power-domain-cells = <1>; status = \"okay\"; wakeup-irq = <235 236 237 258 262 267 271 345 346 347 348>; }; clk: clock-controller { compatible = \"fsl,imx8qm-clk\", \"fsl,scu-clk\"; #clock-cells = <2>; clocks = <&xtal32k &xtal24m>; clock-names = \"xtal_32KHz\", \"xtal_24Mhz\"; }; iomuxc: pinctrl { compatible = \"fsl,imx8qm-iomuxc\"; }; ocotp: imx8qm-ocotp { compatible = \"fsl,imx8qm-scu-ocotp\"; #address-cells = <1>; #size-cells = <1>; read-only; fec_mac0: mac@1c4 { reg = <0x1c4 6>; }; fec_mac1: mac@1c6 { reg = <0x1c6 6>; }; }; rtc: rtc { compatible = \"fsl,imx8qm-sc-rtc\"; }; watchdog { compatible = \"fsl,imx8qm-sc-wdt\", \"fsl,imx-sc-wdt\"; timeout-sec = <60>; }; tsens: thermal-sensor { compatible = \"fsl,imx-sc-thermal\"; tsens-num = <6>; #thermal-sensor-cells = <1>; };\n}; /** * And the platform bus that was done earlier would start from here.. */\nplatform@c000000 { ...\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Adding Devices to Guest","id":"271","title":"Adding Devices to Guest"},"272":{"body":"Now we have most of the actual devices setup. Some final modifications for individual devices can be done at the end of the guest device tree configuration. These can be done outside the main node, as we just modify some node properties which are already defined. /** * For fec1 we need to update the interrupts to match the ones used by guest pass-through. * Most of the configuration is exactly the same that was set original imx8 config * Qemu starts its pass-through interrupts at 0x70 so lets change that * It is not strictly required to remove the possible iommus property but lets do that anyway */\n&fec1 { compatible = \"fsl,imx8qm-fec\", \"fsl,imx6sx-fec\"; interrupts = , , , ; /delete-property/ iommus; pinctrl-names = \"default\"; pinctrl-0 = <&pinctrl_fec1>; phy-mode = \"rgmii-txid\"; phy-handle = <ðphy0>; fsl,magic-packet; nvmem-cells = <&fec_mac0>; nvmem-cell-names = \"mac-address\"; status = \"okay\"; mdio { #address-cells = <1>; #size-cells = <0>; ethphy0: ethernet-phy@0 { compatible = \"ethernet-phy-ieee802.3-c22\"; reg = <0>; at803x,eee-disabled; at803x,vddio-1p8v; qca,disable-smarteee; vddio-supply = <&vddio0>; vddio0: vddio-regulator { regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; }; }; };\n}; /** * Not much to do for clock controller * Remove the iommus as it is not needed in guest and turn the device on */\n&enet0_lpcg { status = \"okay\"; /delete-property/ iommus;\n}; /** * Same for our mailbox * Update the interrupts to match next available interrupt in Qemu */\n&lsio_mu2 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; interrupts = ; /delete-property/ iommus; status = \"okay\";\n}; /** * In the host devicetree we had some pads which were transferred to guest. * There can be found in the original imx8 hosts config. **/\n&iomuxc { pinctrl-names = \"default\"; status = \"okay\"; pinctrl_fec1: fec1grp { fsl,pins = < IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETA_PAD 0x000014a0 IMX8QM_ENET0_MDC_CONN_ENET0_MDC 0x06000020 IMX8QM_ENET0_MDIO_CONN_ENET0_MDIO 0x06000020 IMX8QM_ENET0_RGMII_TX_CTL_CONN_ENET0_RGMII_TX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_TXC_CONN_ENET0_RGMII_TXC 0x06000020 IMX8QM_ENET0_RGMII_TXD0_CONN_ENET0_RGMII_TXD0 0x06000020 IMX8QM_ENET0_RGMII_TXD1_CONN_ENET0_RGMII_TXD1 0x06000020 IMX8QM_ENET0_RGMII_TXD2_CONN_ENET0_RGMII_TXD2 0x06000020 IMX8QM_ENET0_RGMII_TXD3_CONN_ENET0_RGMII_TXD3 0x06000020 IMX8QM_ENET0_RGMII_RXC_CONN_ENET0_RGMII_RXC 0x06000020 IMX8QM_ENET0_RGMII_RX_CTL_CONN_ENET0_RGMII_RX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_RXD0_CONN_ENET0_RGMII_RXD0 0x06000020 IMX8QM_ENET0_RGMII_RXD1_CONN_ENET0_RGMII_RXD1 0x06000020 IMX8QM_ENET0_RGMII_RXD2_CONN_ENET0_RGMII_RXD2 0x06000020 IMX8QM_ENET0_RGMII_RXD3_CONN_ENET0_RGMII_RXD3 0x06000020 >; };\n}; With our additional devices also some headers and definitions need to be included at the beginning of the device tree. These additions can be found also from the original i.MX 8 device tree files. See the full device tree below for reference.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Some Final Touches for Guest Devices","id":"272","title":"Some Final Touches for Guest Devices"},"273":{"body":"The device trees need to be compiled within the Linux kernel source directory. They depend on some kernel device tree headers and in the host device case—other device tree source files. Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling the Device Tree Source to Binary Form","id":"273","title":"Compiling the Device Tree Source to Binary Form"},"274":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-guest.dts imx8qm-mek_conn-guest.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-guest.preprocessed -o imx8qm-mek_conn-guest.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Guest","id":"274","title":"Compiling for Guest"},"275":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-host.dts imx8qm-mek_conn-host.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-host.preprocessed -o imx8qm-mek_conn-host.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Host","id":"275","title":"Compiling for Host"},"276":{"body":"To get passthrough working, i.MX 8 QM needs to be booted using our freshly built hosts imx8qm-mek_conn-host.dtb device tree file. When the system has booted, we need to set up the passedthrough devices for the VFIO driver and start QEMU with devices passed through. First, the devices need to be setup for VFIO: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After, QEMU can be started with our devices over the devices. This is just as an example. It may require a bit of change in other environments. In this example, the guest kernel image—ext2 rootfs and guest device tree—all use the same filename prefix imx8qm-mek_conn-guest . qemu-system-aarch64 \\ -M virt,gic-version=host -enable-kvm \\ -cpu host \\ -m 512M \\ -kernel \"imx8qm-mek_conn-guest.Image\" \\ -drive file=\"imx8qm-mek_conn-guest.ext2\",if=virtio,format=raw -dtb \"imx8qm-mek_conn-guest.dtb\" \\ -nographic \\ -append \"loglevel=7 rootwait root=/dev/vda console=ttyAMA0 earlycon earlyprintk\" \\ -device vfio-platform,host=5b230000.clock-controller \\ -device vfio-platform,host=5b040000.ethernet \\ -device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running QEMU with Passthrough Platform Devices","id":"276","title":"Running QEMU with Passthrough Platform Devices"},"277":{"body":"A hardened system installation covers multiple phases from establishing trust to the installation process. This section describes developing mechanisms to set up a Ghaf system in target hardware.","breadcrumbs":"Research Notes » System Installation » Approaches to Ghaf System Installation","id":"277","title":"Approaches to Ghaf System Installation"},"278":{"body":"The initial Ghaf installation approach to using Ghaf in development and demos is to build target system raw images (img) as binary disk images. The process results in an image based on modular and configurable declarations that are repeatably built using NixOS tooling. In practice, Ghaf disk images are built with: nix build .#package.. which results in disk image: result\\nixos.img For information on how to build and run a Ghaf image, see Build & Run for details. The initial Ghaf installation approach differed from the NixOS installation approach: The key reason in Ghaf was practical: initially, it is simple to write a specific target disk image to a USB boot media or target HW internal persistent media. The NixOS approach is more generic: supporting as many devices as possible. Similar to other Linux distributions like Ubuntu or Fedora. The development objective of Ghaf is to support a portable secure system that results in a target device-specific small trusted computing base. In practice, this means that Ghaf installations are by design not meant to support a generic Linux kernel with about all the device drivers (modules) out there like Ubuntu or Fedora. Ghaf reference installations are designed and to be developed to support particular (declaratively) hardened host and guest kernels with limited drivers only. The Ghaf approach significantly reduces the size of the trusted computing base as the unneeded modules and kernel parts are not taken into use.","breadcrumbs":"Research Notes » System Installation » Ghaf Initial Approach","id":"278","title":"Ghaf Initial Approach"},"279":{"body":"NixOS installation is well documented and thus is only summarized here. The key in the NixOS approach is to have a generic, bootable installation media (iso) like any other Linux distribution. As the NixOS installer aims to support as many devices as possible: the installer has a generic kernel (per hardware architecture), hardware recognition script, and generic requirements for system partitioning (boot and root partitions). Much of the NixOS installation can be modified interactively during installation either from a graphical installer, manually, or even declaratively. After installation, the whole system can be managed fully declaratively and purely (flakes) which is a novel approach compared to other Linux distributions. In practice, you can store your target system declaration in version control (git) to both maintain the system setup and back it up. Ghaf uses this approach for reference system declarations with flake.nix . NixOS usage is popular in cloud system installations. However many cloud providers do not provide NixOS as an option and bare-metal cloud is always not an alternative. For this need, approaches like nixos-anywhere have been developed. Using a smart approach with kexec , one can completely replace cloud provider default Linux options.","breadcrumbs":"Research Notes » System Installation » NixOS Approach","id":"279","title":"NixOS Approach"},"28":{"body":"Ghaf host in release mode has no nix tooling to work with the /nix/store. The /nix/store is only used to build the host system. In release mode, no modifications to nix store are possible. Changes are handled with update (MH08). Ghaf host in debug mode must support nix tooling via read-writable host filesystem. This must be taken into account in build-time nix module declarations.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No nix toolings (MH06)","id":"28","title":"No nix toolings (MH06)"},"280":{"body":"Ghaf introduced a modular structure for an interactive installer . The initial Ghaf reference installer still uses a raw disk image per target device. In practice, it just writes the raw disk image to the target device's internal persistent memory, for example, NVMe. The key idea with the modular interactive Ghaf installer is to enable customization of the installer per target device needs and at the same time support further development of the Ghaf graphical installer. The challenge with the interactive installer is to determine the combination of configurable options, to develop, and test them. Given the Ghaf approach of target device-specific installation Ghaf Initial Approach , the requirement for Ghaf a device-specific installer is challenging. Ghaf installer would have to either: embed the device-specific installation raw disk image in the installer (current way) which results in a huge installer image dynamically build the device-specific installation according to the user's interactive selection download a pre-built device-specific raw disk image which could result in a huge number of configurations use some combination of generic and specific (a compromise) None of which seem feasible in the long run. None of these are either Ghaf's objectives in the long run either. But how to achieve a device-specific secure system installation without getting lost in the generic Linux distro requirements?","breadcrumbs":"Research Notes » System Installation » Modular Interactive","id":"280","title":"Modular Interactive"},"281":{"body":"Now that we already have version control reference device-specific secure system declarations, the question is if we can transfer those into the device installations without requiring a user too many actions that make the installation unnecessarily difficult to implement. This alone is not a novel idea. Automatic Original Equipment Manufacturer (OEM) installers have been doing this for long. Those are often not declarative but rather scripted guidance to answer questions in generic installers. The target device-specific disk partitioning has been left to the user in manual installation. Traditionally in generic installers, it is also risk management. A user typically might not want her device disk wiped out without questions asked. Of course, we could let the user know what is about to happen and ask the user for agreement in confirmation before we install it fully automatically. Declarative configurations can handle user preferences. If one wants to change something, it can be changed in the declarations, stored, and shared via version control. Also including the declarative partitioning that has been tested from within the Ghaf installer. So, according to the We don't need NixOS cloud images anymore article, one can think that a secure, virtualized edge device could be handled similarly to cloud images. A simple (even secure) boot and installation supporting media could provide secure network access to the installation target device and then deploy the specific installation from declarations. In practice, a target device can be booted with a USB media (or even network boot) that provides SSH access to the device using an authorized key. After that, one command can be used to install specific secure system configuration automatically. This is used in Ghaf updates in development with nixos-rebuild ... switch and was also tested with new (clean) systems .","breadcrumbs":"Research Notes » System Installation » Declarative, Non-Interactive Installation","id":"281","title":"Declarative, Non-Interactive Installation"},"282":{"body":"As of now, the proposed approach declarative non-interactive approach using the example tooling depends on Internet access. Secure system installation will require steps additional to functional system setup. For example, establishing trust and setting up secrets. Many guidelines instruct to setup secrets in an air-gapped environment (without network access) for a reason. Above mentioned tools do not yet support offline installation .","breadcrumbs":"Research Notes » System Installation » Discussion","id":"282","title":"Discussion"},"29":{"body":"Ghaf host release mode kernel configuration must be minimal and hardened in the limits of HW vendor BSP. Kernel configuration per device is to be further analyzed iteratively. Limitations are to be documented per target device kernel configurations and HW support for virtualization.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal defconfig (MH07)","id":"29","title":"Minimal defconfig (MH07)"},"3":{"body":"The design principles influencing the architecture of the Ghaf Platform are the following: Edge security The Ghaf security architecture under development by SSRC aims to provide an understandable yet comprehensive view of security controls in the Platform so that vendors can make informed decisions and adopt the Platform for their use cases. The security architecture and subsequent research will be published by SSRC in a series of technical white papers. Zero trust The Ghaf Platform aims to apply the general security principles of zero trust within the software architecture and to act as an enabler for ZTA for edge devices within organizations. Trusted computing base The general principle for establishing the trusted Ghaf Platform code base is to rely on audited software and proven security modules while carefully evaluating and integrating new concepts. The modularized platform not only simplifies the integration of additional security measures but also facilitates the integration of hardware security features. Leveraging and contributing to open-source projects is not only a cornerstone for the Platform components' maintainability but also for the toolchain to increase transparency and auditability. By providing a hardened code base for the hypervisor and OS for the various VMs in the architecture, the Ghaf Platform leverages security benefits across all modules. Configurable, declarative and reproducible","breadcrumbs":"About Ghaf » Design Principles","id":"3","title":"Design Principles"},"30":{"body":"Ghaf host release mode filesystem updates are to be implemented using A/B update mechanism from adminvm. This will be designed and covered in a separate ADR.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Update via adminvm (MH08)","id":"30","title":"Update via adminvm (MH08)"},"31":{"body":"Ghaf minimal host in release mode must be implemented with read-only, integrity checked (dm-verity) filesystem.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Read-only filesystem (MH09)","id":"31","title":"Read-only filesystem (MH09)"},"32":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » netvm—Networking Virtual Machine","id":"32","title":"netvm—Networking Virtual Machine"},"33":{"body":"Proposed, partially implemented for development and testing. netvm reference declaration is available at netvm/default.nix .","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Status","id":"33","title":"Status"},"34":{"body":"Ghaf high-level design target is to secure a monolithic OS by modularizing the OS to networked VMs. The key security target is to not expose the trusted host directly to the Internet. This isolates the attack surface from the Internet to netvm . The following context diagram illustrates development and secure scenarios: Scope! Left : An insecure development scenario. The host is directly connected to the Internet, and the network is bridged from the host to other parts of the system. Right : A secure scenario. The network is passed through to netvm and routed to other parts of the system.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Context","id":"34","title":"Context"},"35":{"body":"The development scenario simplifies the target system network access and configuration. This ADR proposes the development netvm configuration is maintained to support system development. The secure scenario is proposed to be implemented with the use of passthrough to DMA and remap the host physical network interface card (PHY NIC) to netvm . This cannot be generalized for all hardware targets as it requires: Low-level device tree configuration for bootloader and host (at least on platform NIC). VMM host user space NIC bus mapping from the host to netvm . Native network interface driver (not virtual) in netvm . Native driver is bound the vendor BSP supported kernel version. These depend on the hardware setup. The proposed target setup is that the passthrough network device(s) are implemented as declarative nix-modules for easier user hardware-specific configuration. In practice, a user may configure the declaration of a PCI or USB network card that is available to the available hardware setup. netvm will provide: dynamic network configuration: A DHCP server for netvm to provide IP addresses for the other parts of the system, both static and dynamic. Routing from netvm to the Internet and/or inter VM. For common reference hardware with platform NIC, the configured modules for network interface passthrough are provided. For more information, see i.MX 8QM Ethernet Passthrough . Details of other network components, such as default firewall rules, DHCP (static and dynamic client addresses), routing, reverse proxies and security monitoring are to be described in their respective architecture decision records. In this context, these are illustrated in the context diagram on the right side of the netvm network interface driver.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Decision","id":"35","title":"Decision"},"36":{"body":"Isolating the attack surface from the host to networking-specific guest VM makes it easier to protect the critical host system from compromise. The isolation also makes it easier to deploy further security, such as a zero trust policy engine or intrusion detection system (IDS). Isolation makes configuration and comprehension of the system more difficult.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Consequences","id":"36","title":"Consequences"},"37":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » rust-vmm—Bus Passthrough Support for Rust VMMs","id":"37","title":"rust-vmm—Bus Passthrough Support for Rust VMMs"},"38":{"body":"Proposed, work in progress.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Status","id":"38","title":"Status"},"39":{"body":"This ADR is a work-in-progress note for Ghaf bus passthrough implementation that will support rust-vmm-based hypervisors. rust-vmm is an open-source project that empowers the community to build custom Virtual Machine Monitors (VMMs) and hypervisors. For more information, see https://github.com/rust-vmm/community . It is crucial to have bus devices passthrough support for ARM-based hardware as the bus is mainly used to connect the peripherals. Nowadays, the only hypervisor with some support for Platform bus is QEMU but the code is dated 2013 and not frequently used. On the other hand, one of the target hardware devices for Ghaf is NVIDIA Orin with an ARM core. To achieve Ghaf's security and hardware isolation goals, devices should support passthrough mode. Production-ready rust-vmm-based hypervisors ( crosvm , Firecracker , Cloud Hypervisor ) do not have support for Platform bus.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Context","id":"39","title":"Context"},"4":{"body":"As software supply chain security becomes more and more relevant to product security, it is necessary to provide mechanisms to assert reproducible builds, with a transparent chain from source code over the build environment to the final binaries. Such a system allows faster analysis of not only software bugs but also security vulnerabilities and their impact on a product without the need for extensive analysis. This approach further reduces the efforts required for patching and allows mechanisms for safe fallbacks to secure states. For more information on Ghaf supply chain security, see Supply Chain Security .","breadcrumbs":"About Ghaf » Build System and Supply Chain","id":"4","title":"Build System and Supply Chain"},"40":{"body":"Implementation of Platform bus passthrough is a base framework for Rust VMM. This will make it possible to use this mode within production-ready rust-vmm-based hypervisors. The main candidate here is crosvm. The necessity to support Platform bus in other hypervisors is subject to discussion. Technically, the Platform bus is rather a simple bus: it manages memory mapping and interrupts. Information about devices is not dynamic but is read from the device tree during the boot stage. The current status: Required Components Status of Readiness Host kernel side: VFIO drivers (to substitute real driver in host kernel) -/+ Host support for device trees + Guest kernel side: Device drivers for passthrough devices + Guest support for device trees + Rust VMM side: Bus support Needs to be developed. VMM support for device trees Rudimental, needs improvement.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Decision","id":"40","title":"Decision"},"41":{"body":"This section describes how securing Ghaf by reducing its attack surface—hardening—is done.","breadcrumbs":"Architecture » Hardening » Hardening","id":"41","title":"Hardening"},"42":{"body":"Ghaf has two types of kernels: host and guest. Hardening of these kernels varies in terms of hardware support and functionality required by the guest kernel in question. Within this context, the kernel always refers to the Linux operating system kernel.","breadcrumbs":"Architecture » Hardening » Kernel","id":"42","title":"Kernel"},"43":{"body":"NixOS provides several mechanisms to customize the kernel. The main methods are: Declaring kernel command line parameters : usage in Ghaf . Declaring kernel custom configuration : usage in Ghaf . Example of entering the kernel development shell to customize the .config and build it: ~/ghaf $ nix develop .#devShells.x86_64-linux.kernel-x86\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ cp ../modules/host/ghaf_host_hardened_baseline .config\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make menuconfig\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make -j$(nproc)\n...\nKernel: arch/x86/boot/bzImage Booting the built kernel with QEMU: [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ qemu-system-x86_64 -kernel arch/x86/boot/bzImage Validating with kernel hardening checker : [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline\n[+] Kconfig file to check: ../modules/host/ghaf_host_hardened_baseline\n[+] Detected microarchitecture: X86_64\n[+] Detected kernel version: 6.6\n[+] Detected compiler: GCC 120300\n...\n[+] Config check is finished: 'OK' - 188 / 'FAIL' - 5\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline|grep 'FAIL: '\nCONFIG_CFI_CLANG |kconfig| y | kspp | self_protection | FAIL: is not found\nCONFIG_CFI_PERMISSIVE |kconfig| is not set | kspp | self_protection | FAIL: CONFIG_CFI_CLANG is not \"y\"\nCONFIG_MODULES |kconfig| is not set | kspp |cut_attack_surface| FAIL: \"y\"\nCONFIG_FB |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"\nCONFIG_VT |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"","breadcrumbs":"Architecture » Hardening » Kernel Hardening Process","id":"43","title":"Kernel Hardening Process"},"44":{"body":"The host kernel runs on bare metal. The kernel is provided either with Linux upstream (x86_64) or with vendor BSP. The default Ghaf host kernel on x86_64 is maintained by Ghaf upstream package sources nixpkgs or Nix-packaged hardware-specific BSP (for example, NVIDIA Jetson-family of devices). x86-64-linux The host kernel hardening is based on Linux make tinyconfig. The default tinyconfig fails to assertions on NixOS without modifications. Assertions are fixed in ghaf_host_hardened_baseline Linux configuration under Ghaf modules/host/. In addition, NixOS (Ghaf baseline dependency) requires several kernel modules that are added to the config or ignored with allowMissing = true. As of now, the kernel builds and early boots on Lenovo X1.","breadcrumbs":"Architecture » Hardening » Host Kernel","id":"44","title":"Host Kernel"},"45":{"body":"This section describes Secure Boot and how to create secure keys. The reader is expected to know the fundamentals of UEFI and have a basic understanding of Secure Boot UEFI specification .","breadcrumbs":"Architecture » Secure Boot » Secure Boot","id":"45","title":"Secure Boot"},"46":{"body":"Secure Boot can be enabled on NixOS using Lanzaboote . Secure Boot is a UEFI feature that only allows trusted operating systems to boot. Lanzaboote has two components: lzbt and stub. lzbt signs and installs the boot files on the ESP. stub is a UEFI application that loads the kernel and initrd from the ESP.","breadcrumbs":"Architecture » Secure Boot » Enabling Secure Boot","id":"46","title":"Enabling Secure Boot"},"47":{"body":"Secure Boot keys can be created with sbctl , a Secure Boot Manager. sbctl is available in Nixpkgs as pkgs.sbctl. After you installed sbctl or entered a Nix shell, use the following command to create your Secure Boot keys: $ sudo sbctl create-keys Using \"sudo sbctl create-keys\" command user can create secure keys on the trusted system.","breadcrumbs":"Architecture » Secure Boot » Creating Secure Boot Keys","id":"47","title":"Creating Secure Boot Keys"},"48":{"body":"For demonstration purposes, we use pre-generated secure keys which are unsecure as whoever has keys can break into the system. Currently, the Secure Boot feature is enabled in debug builds only, since secure key creation requires sudo rights.","breadcrumbs":"Architecture » Secure Boot » Current Implementation","id":"48","title":"Current Implementation"},"49":{"body":"For enabling secure boot instructions, see the Part 2: Enabling Secure Boot section of the NixOS Secure Boot Quick Start Guide. Make sure your Secure Boot is enabled from the BIOS menu. Once you boot your system with Secure Boot enabled, enroll keys with the following command: $ sudo sbctl enroll-keys --microsoft Reboot the system to activate Secure Boot in the user mode: $ bootctl status\nSystem: Firmware: UEFI 2.70 (Lenovo 0.4720) Firmware Arch: x64 Secure Boot: enabled (user) TPM2 Support: yes Boot into FW: supported","breadcrumbs":"Architecture » Secure Boot » Secure Boot Verification","id":"49","title":"Secure Boot Verification"},"5":{"body":"The vision for the Ghaf platform is to create a virtualized, scalable reference platform that enables the building of secure products leveraging trusted, reusable, and portable software for edge devices. For more information on reference implementation for several devices, see Reference Implementations . Ghaf demo desktop and applications are illustrated in the screen capture below: Ghaf demo desktop and application","breadcrumbs":"Features » Features","id":"5","title":"Features"},"50":{"body":"The Ghaf stack includes a host with VMs. The host consists of two layers—OS kernel with hypervisor and OS user space—and provides virtualization for the guest VMs: system VMs, application or service VMs, or guest OSs. The stack layers and top-level components are illustrated in the following diagram. Stack! At the lowest levels of the stack lay hardware vendor-provided hardware, firmware, and board support package. The Ghaf project aims to use the vendor-provided components either as they are or configure them as supported by the vendor. Configuration may include, for example, host kernel hardening and including only selected components from the vendor BSP. The Ghaf project provides the reference minimal host with user space as defined in the Minimal Host .","breadcrumbs":"Architecture » Stack » Stack","id":"50","title":"Stack"},"51":{"body":"Ghaf provides reference system VMs for networking, GUI and storage. System VM Defined Implementation Status Networking Yes Partial GUI (optional) No Reference Wayland on host, to be isolated to VM GUI VM is considered optional as it may not be needed in some headless configurations.","breadcrumbs":"Architecture » Stack » System VMs","id":"51","title":"System VMs"},"52":{"body":"Ghaf should provide reference application VMs and service VMs that isolate respective software from the host. Depending on the use case requirements, these VMs will communicate with other parts of the system over networking and shared memory. As an example, application VMs (Wayland client) will communicate with the GUI VM (Wayland compositor) across the VM boundaries. This is called cross-domain Wayland. Another, already partially implemented area is networking VM that will securely provide Internet access to other VMs.","breadcrumbs":"Architecture » Stack » Application or Service VM","id":"52","title":"Application or Service VM"},"53":{"body":"Ghaf aims to support users with guest OSs such as other Linux distributions (Ubuntu, Fedora, etc.), Windows, and Android. Some of these have been already prototyped.","breadcrumbs":"Architecture » Stack » Guest OSs","id":"53","title":"Guest OSs"},"54":{"body":"Improvements to code and documentation are welcome! We would love to get contributions from you. For more information, see CONTRIBUTING.md . Some things that will increase the chance that your pull request is accepted faster: Spelling tools usage. Following our Style Guide . Writing a good commit message .","breadcrumbs":"Contributing » Contribution Guidelines","id":"54","title":"Contribution Guidelines"},"55":{"body":"Our hardened OS targets are build configurations based on NixOS. The canonical URL for the upstream Nix git repository is: https://github.com/NixOS . Build configurations define our dependencies and configuration changes to packages and build mechanisms of NixOS. If you want to try Ghaf, see Build and Run .","breadcrumbs":"Reference Implementations » Reference Implementations","id":"55","title":"Reference Implementations"},"56":{"body":"A build configuration is a target to build the hardened OS for a particular hardware device. Most packages used in a build configuration come from nixpkgs—NixOS Packages collection . The upstream first approach means we aim the fix issues by contributing to nixpkgs. At the same time, we get the maintenance support of NixOS community and the benefits of the Nix language on how to build packages and track the origins of packages in the software supply chain security. For more information, see Supply Chain Security . NixOS, a Linux OS distribution packaged with Nix, provides us with: generic hardware architecture support (x86-64 and AArch64) declarative and modular mechanism to describe the system Nix packaging language mechanisms: to extend and change packages with overlays to override packages Even when unmodified upstream is often preferred, even ideal, to ensure timely security updates from upstream—customizations are sometimes required.","breadcrumbs":"Reference Implementations » Approach","id":"56","title":"Approach"},"57":{"body":"To support a reference board without a vendor board support package (BSP)—bootloader, kernel, device drivers—is often not feasible. With this approach, we can overlay the generic NixOS Linux kernel with the vendor kernel and add a vendor bootloader to build a target image. Often the vendor BSPs are also open source but sometimes contain unfree binary blobs from the vendor's hardware. Those are handled by allowing unfree - if the user agrees with the end-user license agreement (EULA). If not, unfree support can be dropped along with that part of the BSP support. The same goes with the architectural variants as headless devices or end-user devices differ in terms what kind of virtual machines (VM) they contain. The user needs graphics architecture and VM support for the user interface (UI) whereas a headless device is more like a small server without the UI.","breadcrumbs":"Reference Implementations » Example","id":"57","title":"Example"},"58":{"body":"Development Build and Run Installer Cross-Compilation Creating Application VM Ghaf as Library: Templates Example Project Modules Options","breadcrumbs":"Reference Implementations » In This Chapter","id":"58","title":"In This Chapter"},"59":{"body":"Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress: Build and Run Running Remote Build on NixOS Installer Cross-Compilation Creating Application VM Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix . If you authorize your development SSH keys in the ssh.nix module and rebuild ghaf for your target device, you can use nixos-rebuild switch to quickly deploy your configuration changes to the target device over the network using SSH. For example: nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@ --fast switch\n...\nnixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@ --fast switch\n... Please note that with the -debug targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access. Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines .","breadcrumbs":"Reference Implementations » Development » Development","id":"59","title":"Development"},"6":{"body":"✅—integrated and tested in the main branch. No known regression. 🚧—prototyped or work in progress in the development branch. ❌—the feature has known regression or bugs.","breadcrumbs":"Features » Status","id":"6","title":"Status"},"60":{"body":"This tutorial assumes that you already have basic git experience. The canonical URL for the upstream Ghaf git repository is https://github.com/tiiuae/ghaf . To try Ghaf, you can build it from the source. Cross-compilation support is currently under development and not available for the building process.","breadcrumbs":"Reference Implementations » Development » Build and Run » Build and Run","id":"60","title":"Build and Run"},"61":{"body":"First, follow the basic device-independent steps: Clone the git repository https://github.com/tiiuae/ghaf . Ghaf uses a Nix flake approach to build the framework targets, make sure to: Install Nix or full NixOS if needed: https://nixos.org/download.html . Enable flakes: https://nixos.wiki/wiki/Flakes#Enable_flakes . To see all Ghaf-supported outputs, type nix flake show. Set up an AArch64 remote builder: https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html . Then you can use one of the following instructions for the supported targets: Device Architecture Instruction Virtual Machine x86_64 Running Ghaf Image for x86 VM (ghaf-host) Generic x86 Сomputer x86_64 Running Ghaf Image for x86 Computer Lenovo X1 Carbon Gen 11 x86_64 Running Ghaf Image for Lenovo X1 NVIDIA Jetson AGX Orin AArch64 Ghaf Image for NVIDIA Jetson Orin AGX NXP i.MX 8QM-MEK AArch64 Building Ghaf Image for NXP i.MX 8QM-MEK MICROCHIP icicle-kit RISCV64 Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Reference Implementations » Development » Build and Run » Prerequisites","id":"61","title":"Prerequisites"},"62":{"body":"Before you begin, check device-independent prerequisites . From the ghaf source directory, run the nix run .#packages.x86_64-linux.vm-debug command. This creates ghaf-host.qcow2 copy-on-write overlay disk image in your current directory. If you do unclean shutdown for the QEMU VM, you might get weird errors the next time you boot. Simply removing ghaf-host.qcow2 should be enough. To cleanly shut down the VM, from the menu bar of the QEMU Window, click Machine and then Power Down.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 VM (ghaf-host)","id":"62","title":"Running Ghaf Image for x86 VM (ghaf-host)"},"63":{"body":"Before you begin, check device-independent prerequisites . Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#generic-x86_64-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 Computer","id":"63","title":"Running Ghaf Image for x86 Computer"},"64":{"body":"Lenovo X1 is the reference x86_64 device for the Ghaf project. Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#lenovo-x1-carbon-gen11-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for Lenovo X1","id":"64","title":"Running Ghaf Image for Lenovo X1"},"65":{"body":"Before you begin: Check device-independent prerequisites . If you use a new device, flash bootloader firmware first. Then you can build and run a Ghaf image . Flashing NVIDIA Jetson Orin AGX Run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug-flash-script It will build the Ghaf image and bootloader firmware, and prepare the flashing script. Give \"yes\" answers to all script questions. The building process takes around 1,5 hours. Set up the following connections: Connect the board to a power supply with a USB-C cable. Connect a Linux laptop to the board with the USB-C cable. Connect the Linux laptop to the board with a Micro-USB cable to use serial interface . For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. After the build is completed, put the board in recovery mode. For more information, see the Force Recovery Mode section in the Jetson AGX Orin Developer Kit User Guide. Run the flashing script: sudo ~/result/bin/flash-ghaf-host There is a time-out for this operation, so run the script within one minute after putting the device in recovery mode. If you got the error message \"ERROR: might be timeout in USB write.\": Reboot the device and put it in recovery mode again. Check with the lsusb command if your computer can still recognize the board, and run the flash script again. Restart the device after flashing is done. Building and Running Ghaf Image for NVIDIA Jetson Orin AGX After the latest firmware is flashed , it is possible to use a simplified process by building only the Ghaf disk image and running it from external media: To build the target image, run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the hardware from the USB media. In the current state of Ghaf, it is a bit tricky to make NVIDIA Jetson Orin AGX boot Ghaf from a USB if the same thing has already been flashed on the boards's eMMC. To succeed, you can change partition labels on eMMC (or optionally wiping everything away by formatting): Log in as a root: sudo su Check the current labels: lsblk -o name,path,fstype,mountpoint,label,size,uuid Change the ext4 partition label: e2label /dev/mmcblk0p1 nixos_emmc Change the vfat partition label: dosfslabel /dev/mmcblk0p2 ESP_EMMC Verify the labels that were changed: lsblk -o name,path,fstype,mountpoint,label,size,uuid After these changes NVIDIA Jetson Orin AGX cannot boot from its internal eMMC. It will boot from the USB device with the correct partition labels.","breadcrumbs":"Reference Implementations » Development » Build and Run » Ghaf Image for NVIDIA Jetson Orin AGX","id":"65","title":"Ghaf Image for NVIDIA Jetson Orin AGX"},"66":{"body":"Before you begin, check device-independent prerequisites . In the case of i.MX8, Ghaf deployment consists of creating a bootable SD card with a first-stage bootloader (Tow-Boot) and USB media with the Ghaf image: To build and flash Tow-Boot bootloader: $ git clone https://github.com/tiiuae/Tow-Boot.git && cd Tow-Boot\n$ nix-build -A imx8qm-mek\n$ sudo dd if=result/ shared.disk-image.img of=/dev/ To build and flash the Ghaf image: Run the nix build .#packages.aarch64-linux.imx8qm-mek-release command. Prepare the USB boot media with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card and USB boot media into the board and switch the power on.","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for NXP i.MX 8QM-MEK","id":"66","title":"Building Ghaf Image for NXP i.MX 8QM-MEK"},"67":{"body":"Before you begin: Check device-independent prerequisites . Make sure HSS version 0.99.35-v2023.02 is programmed in your board eNVM. The version can be seen in the pre-bootloader log. Check the video guide to build HSS and program the eNVM: How to build HSS and program the eNVM? In the case of the Icicle Kit, Ghaf deployment consists of creating an SD image with U-Boot and Linux kernel from Microchip, and Ghaf-based NixOS rootfs: Build a Ghaf SD image: a. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-release command to release the image. b. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-debug command to debug the image. Flash the Ghaf SD image: If you want to use a SD card: Prepare the SD card with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card into the board and switch the power on. If you want to use the onboard MMC: You can directly flash a NixOS image to onboard an MMC card: dd if=./result/nixos.img of=/dev/ bs=32M. For more information on how to access the MMC card as a USB disk, see MPFS Icicle Kit User Guide .","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for Microchip Icicle Kit","id":"67","title":"Building Ghaf Image for Microchip Icicle Kit"},"68":{"body":"To set up a remote build on NixOS: Identify required SSH keys for remote SSH connection. Set up configurations. If you hit an issue, check Troubleshooting .","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Running Remote Build on NixOS","id":"68","title":"Running Remote Build on NixOS"},"69":{"body":"This step assumes that public SSH keys were generated and copied ( ssh-copy-id ) both for normal and root users. For more information, see Setting up public key authentication . Before you begin, make sure an SSH connection is established to the remote host for both normal and root users: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\nnix store ping --store ssh://USER@REMOTE_IP_ADDRESS 1.1. [Local Machine] Configuring SSH Keys Do the following on a local machine: Change directory to Home Directory with SSH: cd .ssh The public keys of the remote machine are located in the known_hosts file. These keys are created and configured after the ssh-copy-id command. Make sure the keys are there. If they are not there: Access the remote machine. Run cd /etc/ssh. Retrieve and copy the public keys. Go back to the local machine and paste them into known_hosts . Navigate to the /etc/ssh/ directory: cd /etc/ssh Make sure the ssh_known_hosts file contains the same public keys as the remote machine (same as .ssh/knwon_hosts). Otherwise, specify it in the configuration.nix file. Use CMD as the root user: sudo -i Make sure the root user’s keys are different from the user’s keys: cd .ssh TIP :.ssh is a user-level access and /etc/ssh is system-wide. 1.2. Accessing Remote Machine Using SSH Do the following: Navigate the authorized_keys file: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\ncd .ssh\nsudo nano authorized_keys Make sure that both user and root public keys for the local machine are located there: The user’s public key can be obtained from /home/username/.ssh/id_rsa.pub. The root user's public key can be obtained from /root/.ssh/id_rsa.pub.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 1. Configuring SSH Keys","id":"69","title":"1. Configuring SSH Keys"},"7":{"body":"Orin—NVIDIA Jetson AGX Orin as the main reference device. x86—generic x86_64; tested on Intel NUC (Next Unit of Computing) or laptop. Lenovo X1—Lenovo X1 Carbon Gen 11 laptop. aarch64—generic AArch64; tested on an ARM server, laptop (e.g. Apple MacBook's), or NVIDIA Jetson AGX Orin. All variants—supported devices from Architectural Variants . The following tables show the status of Ghaf Platform features:","breadcrumbs":"Features » Reference Devices","id":"7","title":"Reference Devices"},"70":{"body":"2.1. [Local Machine] Setting Up Configuration Files Do the following on a local machine: Set configuration variables in configuration.nix and nix.conf: Use the following commands: cd /etc/nixos\nsudo nano configuration.nix Add lib in the header like so: { config, pkgs, lib, ... }:. Edit the nix.conf file: environment.etc.\"nix/nix.conf\".text = lib.mkForce '' # Your custom nix.conf content here builders = @/etc/nix/machines require-sigs = false max-jobs = 0 # to use remote build by default not local substituters = https://cache.nixos.org/ trusted-public-keys = cache.nixos.org-1:6pb16ZPMQpcDShjY= cache.farah:STwtDRDeIDa... build-users-group = nixbld trusted-users = root farahayyad experimental-features = nix-command flakes\n''; For more information, see the nix.conf section of the Nix Reference Manual. Rebuild NixOS by running: sudo nixos-rebuild switch Create or set the machines file: Use the following commands: cd /etc/nixos\nsudo nano machines Specify the SSH settings: [ssh://]USER@HOST target-spec [SSH identity file] [max-jobs] [speed factor]\n[supported-features] [mandatory-features] [ssh-public-key-encoded] Parameters inside ‘[ ]’ are optional. The ssh-public-key-encoded is the base-64 encoded public key of the remote machine. Get the encoding using: echo -n \"your_public_key_here\" | base64 If omitted, SSH will use its regular known_hosts file. For more information, see the Remote Builds section of the Nix Reference Manual. 2.2. [Remote Machine] Setting Up Configuration Files Do the following on a remote machine: Specify the sshd_config settings: Use the following commands: cd /etc/ssh\nsudo nano sshd_config Make sure PubkeyAuthentication is set as yes . Specify the /etc/nix/nix.conf settings: Use the following commands: cd /etc/nix\nsudo nano nix.conf Edit the nix.conf file: trusted-public-keys = cache.nixos.org-1:61o0gWypbMrAURk...\nbuild-users-group = nixbld\nrequire-sigs = false\ntrusted-users = root farahayyad jk\nbinary-caches = https://cache.nixos.org/\nsubstituters = https://cache.nixos.org/\nsystem-features = nixos-test benchmark big-parallel kvm\nbinary-cache-public-keys = cache.nixos.org-1:6NCHD59X43...\nexperimental-features = nix-command flakes Run the following command to restart daemon and update all the preceding changes: systemctl restart nix-daemon.service","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 2. Setting Up Configuration Files","id":"70","title":"2. Setting Up Configuration Files"},"71":{"body":"Single-User Nix Installation Issues VPN Setup for Remote Access Private Key on Local Machine Not Matching Public Key on Remote Machine","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Troubleshooting","id":"71","title":"Troubleshooting"},"72":{"body":"This issue typically arises when Nix is installed in a single-user mode on the remote machine, which can create permission issues during multi-user operations. If an operation fails with the following error message: could not set permissions on '/nix/var/nix/profiles/per-user' to 755: Operation not permitted reinstall Nix in a multi-user setup: Uninstall Nix using a single-user mode: rm -rf /nix Install Nix in a multi-user mode: sh <(curl -L https://nixos.org/nix/install) --daemon For more information about Nix security modes, see the Security section of the Nix Reference Manual.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Single-User Nix Installation Issues","id":"72","title":"Single-User Nix Installation Issues"},"73":{"body":"A VPN is needed, if the local machine is not on the same local network as your remote build machine. To set up a VPN using OpenConnect , do the following: Install OpenConnect: nix-env -iA nixos.openconnect Establish a VPN connection: sudo openconnect --protocol=gp -b access.tii.ae Once authenticated, you establish a secure connection to your network. Use ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE to check if it is possible to connect to the remote machine.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » VPN Setup for Remote Access","id":"73","title":"VPN Setup for Remote Access"},"74":{"body":"Using mismatched key pairs could result in the Permission denied error. Ensure and double-check that you are using the right key pairs. If you choose to use/present your local’s RSA private key, make sure that it is the corresponding RSA public key that is in the remote’s authorized_file, not the ED25519 or ECDSA public keys.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Private Key on Local Machine Not Matching Public Key on Remote Machine","id":"74","title":"Private Key on Local Machine Not Matching Public Key on Remote Machine"},"75":{"body":"","breadcrumbs":"Reference Implementations » Development » Installer » Installer","id":"75","title":"Installer"},"76":{"body":"You can obtain the installation image for your Ghaf configuration. To check possible configuration options, see Modules Options . Set ghaf.installer.enable to true. Add nixos-generators module to ghaf.installer.imgModules list to configure installer image type. Choose installer modules from ghaf.installer.installerModules and set ghaf.installer.enabledModules to list of their names. Write code for the installer in ghaf.installer.installerCode. {config, ...}: { ghaf.installer = { enable = true; imgModules = [ nixos-generators.nixosModules.raw-efi ]; enabledModules = [\"flushImage\"]; installerCode = '' echo \"Starting flushing...\" if sudo dd if=${config.system.build.${config.formatAttr}} of=/dev/${config.ghaf.installer.installerModules.flushImage.providedVariables.deviceName} conv=sync bs=4K status=progress; then sync echo \"Flushing finished successfully!\" echo \"Now you can detach installation device and reboot to Ghaf.\" else echo \"Some error occured during flushing process, exit code: $?.\" exit fi ''; };\n} After that you can build an installer image using this command: nix build .#nixosConfigurations..config.system.build.installer","breadcrumbs":"Reference Implementations » Development » Installer » Configuring and Building Installer for Ghaf","id":"76","title":"Configuring and Building Installer for Ghaf"},"77":{"body":"To add an installer module, replace the corresponding placeholders with your code and add this to your configuraiton: ghaf.installer.installerModules. = { requestCode = '' # Your request code written in Bash ''; providedVariables = { # Notice the dollar sign before the actual variable name in Bash. = \"$\"; };\n};","breadcrumbs":"Reference Implementations » Development » Installer » Adding Installer Modules","id":"77","title":"Adding Installer Modules"},"78":{"body":"Provided variables show variable names in Nix. For actual names of variables in Bash, see the sources of the module.","breadcrumbs":"Reference Implementations » Development » Installer » Built-in Installer Modules","id":"78","title":"Built-in Installer Modules"},"79":{"body":"Provided variables: deviceName: name of the device on which image should be flushed (e.g. \"sda\", \"nvme0n1\")","breadcrumbs":"Reference Implementations » Development » Installer » flushImage","id":"79","title":"flushImage"},"8":{"body":"Feature Status Reference Device Details Ghaf in virtual machine ✅ x86 nix run .#packages.x86_64-linux.vm-debug aarch64 reference image ✅ Orin Based on Jetson Linux , OE4T and jetpack-nixos . aarch64 reference image ✅ imx8qm Based on NXP BSP, implemented as nixos-hardware module x86 generic image ✅ x86 Generic x86 computer, based on generic NixOS . NOTE: requires device specific configuration. Lenovo X1 reference image ✅ Lenovo X1 x86_64 laptop computer, supports basic compartmentalized environment Native build ✅ aarch64, x86 Remote aarc64 nixos builders recommended Cross-compilation 🚧 aarch64, riscv64 Depends on NixOS nixpkgs 23.05 support for cross-compilation CI builds ✅ All Only main-branch, not for all PRs . Emulated build ❌ aarch64 binfmt, may freeze the build machine. Not recommended. See instructions.","breadcrumbs":"Features » Release Builds and Hardware Architecture Support","id":"8","title":"Release Builds and Hardware Architecture Support"},"80":{"body":"Cross-compilation is currently under development and cannot be used properly on all the supported device configurations. Ghaf is targeted at a range of devices and form factors that support different instruction set architectures (ISA). Many small form-factor edge devices are not powerful enough to compile the needed applications or OSs that run on them. As the most common ISA used in desktops and servers is x_86, this will generally require that the code is cross-compiled for target ISA e.g. AArch64 or RISC-V. NixOS and Nixpkgs have good support for cross-compilation, however, there are still some that can not be compiled in this way.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation","id":"80","title":"Cross-Compilation"},"81":{"body":"An SD image for the Microchip Icicle Kit can be cross-compiled from an x86 machine. To generate the release or debug an SD image run the following command: $> nix build .#packages.riscv64-linux.microchip-icicle-kit-","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation for Microchip Icicle Kit (RISCV64)","id":"81","title":"Cross-Compilation for Microchip Icicle Kit (RISCV64)"},"82":{"body":"This will involve working with upstream package maintainers to ensure that the packages are cross-compilation aware. This will be addressed on a package-by-package basis.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Future Cross-Compilation Support","id":"82","title":"Future Cross-Compilation Support"},"83":{"body":"binfmt allows running different ISA on a development machine. This is achieved by running the target binary in an emulator such as QEMU or in a VM. So while not cross-compiled it can enable development for some embedded device configurations. To enable binfmt, we recommend to set the following in your host systems configuration.nix: boot.binfmt.emulatedSystems = [ \"riscv64-linux\" \"aarch64-linux\"\n]; In addition, it is recommended to enable KVM support with either boot.kernelModules = [ \"kvm-amd\" ]; or boot.kernelModules = [ \"kvm-intel\" ]; depending on whether your development host is running AMD or Intel processor.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » binfmt Emulated Build","id":"83","title":"binfmt Emulated Build"},"84":{"body":"Application VM (AppVM) is a VM that improves trust in system components by isolating applications from the host OS and other applications. Virtualization with hardware-backed mechanisms provides better resource protection than traditional OS. This lets users use applications of different trust levels within the same system without compromising system security. While the VMs have overhead, it is acceptable as a result of improved security and usability that makes the application seem like it is running inside an ordinary OS. As a result, both highly trusted applications and untrusted applications can be hosted in the same secure system when the concerns are separated in their own AppVMs. To create an AppVM: Add AppVM description. Add an app launcher in GUI VM.","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Creating Application VM","id":"84","title":"Creating Application VM"},"85":{"body":"Add the VM description in the target configuration. lenovo-x1.nix already has AppVMs inside for Chromium, Gala, and Zathura applications. AppVMs Example vms = with pkgs; [ { name = \"chromium\"; packages = [chromium]; macAddress = \"02:00:00:03:03:05\"; ramMb = 3072; cores = 4; } { name = \"gala\"; packages = [(pkgs.callPackage ../packages/gala {})]; macAddress = \"02:00:00:03:03:06\"; ramMb = 1536; cores = 2; } { name = \"zathura\"; packages = [zathura]; macAddress = \"02:00:00:03:03:07\"; ramMb = 512; cores = 1; }\n]; Each VM has the following properties: Property Type Unique Description Example name str yes This name is postfixed with -vm and will be shown in microvm list. The name - e.g. chromium-vm will be also the VM hostname. The lenght of the name must be 8 characters or less. “chromium” packages list of types.package no Packages to include in a VM. It is possible to make it empty or add several packages. [chromium top] macAddress str yes Needed for network configuration. \"02:00:00:03:03:05\" ramMb int, [1, …, host memory] no Memory in MB. 3072 cores int, [1, …, host cores] no Virtual CPU cores. 4","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding AppVM Description","id":"85","title":"Adding AppVM Description"},"86":{"body":"To add an app launcher, add an element in the guivm.nix file to the graphics.launchers list. A launcher element has 2 properties: path – path to the executable you want to run, like a graphical application. icon – path to an icon to show. Check the example launchers at guivm.nix .","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding Application Launcher in GUI VM","id":"86","title":"Adding Application Launcher in GUI VM"},"87":{"body":"Labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment. To use Labwc as your default desktop environment, add it as a module to Ghaf: change the configuration option profiles.graphics.compositor = \"labwc\" or uncomment the corresponding line in guivm.nix file. The basis of the labwc configuration is the set of following files: rc.xml, menu.xml, autostart, and environment. These files can be edited by substituting in the Labwc overlay overlays/custom-packages/labwc/default.nix.","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Labwc Desktop Environment","id":"87","title":"Labwc Desktop Environment"},"88":{"body":"The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS . Ghaf uses patched Labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration = yes). The borderColor property is responsible for the frame color. TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients. For example: \n Foot Terminal with Aqua Colored Frame","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Window Border Coloring","id":"88","title":"Window Border Coloring"},"89":{"body":"Ghaf is a framework for creating virtualized edge devices, it is therefore expected that projects wishing to use Ghaf should import it to create a derived work for the specific use case. In practice, projects should import Ghaf and its dependencies into an external version control (git) repository. Ghaf provides templates for the reference hardware to ease this process. In this section: overview of Ghaf usage and upstream dependencies required steps to create a Ghaf-based project updating the project to get the latest changes customization of the project using Ghaf-modules and Nix-supported mechanisms The possible Ghaf usage in your project is illustrated in the following diagram: Ghaf Usage Overview The Ghaf Platform repository provides declarative modules and reference implementations to help with declaring your customized secure system. External repositories help make various HW options, system image generators, and reference board-support packages available.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Ghaf as Library: Templates","id":"89","title":"Ghaf as Library: Templates"},"9":{"body":"Feature Status Reference Device Details Quick target update ✅ all nixos-rebuild --flake .#nvidia-jetson-orin-debug --target-host root@ghaf-host --fast switch aarch64 device flashing ✅ Orin Full device software flashing using x86 machine root filesystem flashing ✅ x86, imx8qm dd image to bootable media - see Debug: SSH ✅ Orin, x86 Host access only in -debug-target, see authentication.nix Debug: Serial ✅ all Host access only in -debug-target - e.g. screen /dev/ttyACM0 115200 Compartmentalized environment 🚧 Lenovo X1 NetVM, GUI VM (with GPU passthrough) plus some Application VMs","breadcrumbs":"Features » Development","id":"9","title":"Development"},"90":{"body":"Check the available target templates: nix flake show github:tiiuae/ghaf Select the appropriate template based on reference implementation, for example, target-aarch64-nvidia-orin-agx: nix flake new --template github:tiiuae/ghaf#target-aarch64-nvidia-orin-agx ~/ghaf-example\nwrote: ~/ghaf-example/flake.nix See your project template outputs: cd ~/ghaf-example/\nnix flake show\ngit+file://~/ghaf-example\n├───formatter\n│ ├───aarch64-linux: package 'alejandra-3.0.0'\n│ └───x86_64-linux: package 'alejandra-3.0.0'\n├───nixosConfigurations\n│ └───PROJ_NAME-ghaf-debug: NixOS configuration\n└───packages\n├───aarch64-linux\n│ └───PROJ_NAME-ghaf-debug: package 'nixos-disk-image'\n└───x86_64-linux\n└───PROJ_NAME-ghaf-debug-flash-script: package 'flash-ghaf' Change the placeholder to the name of your project your_project: sed -i 's/PROJ_NAME/your_project/g' flake.nix","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Using Ghaf Templates","id":"90","title":"Using Ghaf Templates"},"91":{"body":"To update your project, run nix flake update. This checks the inputs for updates and based on the availability of the updates, and then generates an updated flake.lock which locks the specific versions to support the reproducible builds without side effects. In practice, a Nix flake does not allow floating inputs but all the inputs and declared packages must be mapped to specific hashes to get exact revisions of your inputs. This mechanism also supports the supply-chain security: if someone changes the upstream project, for example, by overwriting a part of the input so that the hash changes, you will notice. After updating, reviewing, and testing: commit the updated flake.lock to your version history to share reproducible builds within your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Updating Ghaf Revision","id":"91","title":"Updating Ghaf Revision"},"92":{"body":"To use the Ghaf declarative module system, check what you need in your system and choose the modules options you need. For example, import the ghaf graphics-module and declare that you will need the reference Wayland compositor Weston and the demo applications: { ghaf.graphics.weston = { enable = false; enableDemoApplications = false; }; } After the change, rebuild the system and switch it into use in your target device and it will run with the GUI and apps removed. After testing, you can commit the changes and share them with your colleagues to build the same system (even a system image) as needed in your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Customizing Ghaf Modules","id":"92","title":"Customizing Ghaf Modules"},"93":{"body":"The compartmentalization could be applied to many specific x86_64 computers and laptops with some customization applied to the Ghaf. The best way to do the Ghaf customization is by using Ghaf templates: Create a template project as described in the Ghaf as Library section. Adjust your system configuration in accordance with your HW specification. Determine all VIDs and PIDs of the devices that are passed to the VMs. Add GUIVM configuration, NetworkVM configuration, and optionally some AppVMs. Set up Weston panel shortcuts. You can refer to the existing project example for Lenovo T14 and Lenovo X1 laptops . Creating the structure that includes all necessary data for the device passthrough: # File 'my-hardware/lenovo-t14.nix':\n# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors\n# SPDX-License-Identifier: Apache-2.0\n#\n# Generic x86_64 computer -target\n{ deviceName = \"lenovo-t14\"; networkPciAddr = \"0000:00:14.3\"; networkPciVid = \"8086\"; networkPciPid = \"02f0\"; gpuPciAddr = \"0000:00:02.0\"; gpuPciVid = \"8086\"; gpuPciPid = \"9b41\"; usbInputVid = \"046d\"; usbInputPid = \"c52b\";\n} The fields of that structure are self-explanatory. Use the lspci -nnk command to get this data from any Linux OS running on the device.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Example Project","id":"93","title":"Example Project"},"94":{"body":"If after booting you see a black screen, try the following to detect the issue: Add a Wi-Fi network name and password to the lenovo-x1-carbon.nix file instead of #networks.\"ssid\".psk = \"psk\". Build and run the image. For more information, see Running Ghaf Image for Lenovo X1 . Identify an IP address by a MAC address with the arp command. If a MAC address is unknown, you can boot into the NixOS image or any other OS to find it, or try the latest addresses that arp returns. Connect using SSH (login/password ghaf/ghaf). Then connect from netvm to the host using ssh 192.168.101.2 (login/password ghaf/ghaf). Check running VMs with microvm -l. Check a GUIVM log using journalctl -u microvm@guivm. If GUIVM does not start, you can try to start it manually with /var/lib/microvms/guivm/current/bin/microvm-run. In case when GUIVM did not start with the error message that the device /dev/mouse or /dev/touchpad was not found, it means that the model of the touchpad in the laptop is different since it was bought in another country and has a different SKU (stock keeping unit). To add support for a new touchpad, do the following: On the ghaf host, check the devices in /dev/input/by-path that contain “-event-” in the name. Use the command like udevadm info -q all -a /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-event-mouse | grep name for the name of each of these devices. By name you can understand which devices belong to the touchpad. For example, on laptops in Finland they look like “SYNA8016:00 06CB:CEB3 Mouse” and “SYNA8016:00 06CB:CEB3 Touchpad”, and in the UAE they are “ELAN067C:00 04F3:31F9 Mouse” and “ELAN067C:00 04F3:31F9 Touchpad.” If there are no such devices in /dev/input/by-path, then you can check the devices /dev/input/event* with a similar command. When the necessary device names are found, add them to services.udev.extraRules in the lenovo-x1-carbon.nix file, rebuild the image and test the changes.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Troubleshooting for Lenovo X1 Laptop","id":"94","title":"Troubleshooting for Lenovo X1 Laptop"},"95":{"body":"","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Modules Options","id":"95","title":"Reference Implementations"},"96":{"body":"Embedded virtualization builds on technologies from cloud security. Cloud services provide scalable but isolated computation — your business case is isolated from someone else's business case. At the hardware level. Similarly, hardware support in modern personal devices has enabled the isolation of device resources with virtualization. This provides the baseline for secure system design for use case protection. In practice, the user can use the same device with a trusted application and with an untrusted application. Both applications are isolated from each other to protect valuable user data and privacy. Our systems are built using Nixpkgs and various Nix -based tools and configurations. For more information on Nix ecosystem, see nix.dev .","breadcrumbs":"Technologies » Technologies","id":"96","title":"Technologies"},"97":{"body":"Protected computation resources include CPU, memory, storage, and other IO devices. Allocation of these resources is managed with the hypervisor. In our reference implementation, we use KVM (Kernel Virtual Machine) from Linux to virtualize hardware access. From hardware, this requires MMU (memory management unit) for CPU physical to virtual address mapping and IOMMU for direct memory access (DMA) capable device virtual addresses to physical addresses of the main memory. Many 64-bit CPUs support virtualization via hypervisor extensions already. Our reference implementation supports x86-64 and Aarch64, and we follow RISC-V hypervisor extensions development.","breadcrumbs":"Technologies » Hardware Requirements for Virtualization","id":"97","title":"Hardware Requirements for Virtualization"},"98":{"body":"On top of OS kernel hypervisor support with KVM. We allocate virtual resources for use cases with user-space virtual machine manager (VMM) using rust-vmm based projects such as cloud-hypervisor and crosvm . QEMU is enabled for certain development use cases. In addition, we have also experimental, Aarch64 demonstrated support for a KVM variant— KVMS —which adds security features to standard KVM.","breadcrumbs":"Technologies » Virtual Machine Manager (VMM)","id":"98","title":"Virtual Machine Manager (VMM)"},"99":{"body":"Compartmentalization Passthrough Binding Device to VFIO Driver NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization Hypervisor Options","breadcrumbs":"Technologies » In This Chapter","id":"99","title":"In This Chapter"}},"length":283,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.7416573867739413},"272":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"272":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"271":{"tf":2.449489742783178}}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"2":{"df":1,"docs":{"272":{"tf":1.0}}},"3":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.3166247903554},"196":{"tf":1.7320508075688772},"266":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"271":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"271":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"266":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":7,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"266":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"266":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"271":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"235":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":10,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.23606797749979},"265":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"264":{"tf":1.0},"266":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"44":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":35,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"281":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"271":{"tf":1.0}},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.0},"86":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.449489742783178},"279":{"tf":2.449489742783178},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.0},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":26,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.7320508075688772},"224":{"tf":1.0},"235":{"tf":2.0},"247":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":2.23606797749979},"35":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.0},"281":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.4142135623730951},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"266":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"249":{"tf":1.0},"257":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"268":{"tf":1.0},"281":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.8284271247461903}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"258":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.0},"278":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"261":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"279":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"268":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"10":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":2.23606797749979},"35":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":57,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"262":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.242640687119285},"158":{"tf":2.23606797749979},"249":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":4.0},"272":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":2.0},"136":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"260":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":2.0},"271":{"tf":7.211102550927978},"272":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"266":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"250":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.6457513110645907}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"280":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"264":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"281":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.0},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"279":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":4.358898943540674},"272":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"264":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"280":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":1.7320508075688772},"266":{"tf":3.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"281":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"271":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":2.8284271247461903},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"271":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"271":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"122":{"tf":1.0},"132":{"tf":2.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"270":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"281":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"277":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"253":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"251":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.8284271247461903},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"28":{"tf":1.0},"281":{"tf":2.6457513110645907},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"239":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"272":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"266":{"tf":4.69041575982343},"272":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"278":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.449489742783178},"273":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":46,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.0},"113":{"tf":4.0},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":2.0},"264":{"tf":4.123105625617661},"266":{"tf":3.0},"267":{"tf":2.6457513110645907},"268":{"tf":1.4142135623730951},"269":{"tf":4.0},"270":{"tf":3.605551275463989},"271":{"tf":4.795831523312719},"272":{"tf":3.0},"273":{"tf":2.6457513110645907},"276":{"tf":3.3166247903554},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.8284271247461903},"281":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"280":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"278":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"281":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"a":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"276":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.3166247903554},"118":{"tf":2.0},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"c":{"df":3,"docs":{"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":3,"docs":{"270":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0}}}},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.0}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"269":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"234":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"262":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":17,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.8284271247461903},"266":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"235":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"263":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"242":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.8284271247461903},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"266":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"199":{"tf":1.0},"271":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"279":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"279":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"256":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"270":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"264":{"tf":1.0},"273":{"tf":1.0},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"252":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"271":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"270":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"271":{"tf":2.6457513110645907},"272":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"282":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.0},"199":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"280":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":95,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.0},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":3.7416573867739413},"171":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":3.0},"179":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":3.3166247903554},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.3166247903554},"90":{"tf":2.8284271247461903},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"279":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"252":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"266":{"tf":2.0},"271":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"266":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"276":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"264":{"tf":1.0},"281":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"282":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"268":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"279":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.6457513110645907},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":71,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":2.0},"188":{"tf":2.0},"19":{"tf":1.7320508075688772},"199":{"tf":2.0},"20":{"tf":2.6457513110645907},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":1.0},"264":{"tf":2.449489742783178},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.4142135623730951},"253":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"166":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":13,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.6457513110645907},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.0},"266":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"236":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"278":{"tf":2.6457513110645907},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":2.0},"67":{"tf":2.8284271247461903},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"278":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"261":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"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":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"264":{"tf":2.23606797749979},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"271":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"272":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"278":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.4142135623730951},"255":{"tf":1.0},"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"263":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":2.23606797749979},"279":{"tf":3.0},"280":{"tf":3.7416573867739413},"281":{"tf":3.605551275463989},"282":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"224":{"tf":1.0},"282":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"237":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":2.23606797749979},"281":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.0},"228":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.0},"266":{"tf":3.7416573867739413},"272":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"279":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"236":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"43":{"tf":4.242640687119285},"44":{"tf":2.6457513110645907},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":32,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.7416573867739413},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"281":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"w":{"c":{"df":2,"docs":{"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.0}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"240":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"271":{"tf":1.4142135623730951},"281":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"272":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.242640687119285},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"256":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"258":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"270":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"264":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"229":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"276":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"266":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"266":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.0}}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"272":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"270":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":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":{"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.0},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"266":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"272":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":2.0},"276":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"282":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"237":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"270":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.0},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"227":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"247":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":22,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.4142135623730951},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"228":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"277":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.605551275463989},"272":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.4641016151377544},"256":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":3.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"272":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":1.7320508075688772},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":31,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"280":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"270":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"267":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"270":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0}}}}},"df":1,"docs":{"271":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":39,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"280":{"tf":1.0}},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"254":{"tf":1.0}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"269":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"230":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.7320508075688772},"281":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":41,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.4142135623730951},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":36,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":2.6457513110645907},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":3.0},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"271":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"232":{"tf":1.0},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"233":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"271":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"260":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"242":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"255":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"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":35,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"271":{"tf":2.0},"276":{"tf":2.0},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"280":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"276":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.0}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"266":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.449489742783178},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"253":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":26,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"271":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"266":{"tf":5.0990195135927845},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.0},"19":{"tf":1.0},"253":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":1.7320508075688772},"255":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"279":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"234":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.0},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":2.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"281":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"271":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"264":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"281":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"r":{"d":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.23606797749979},"211":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":41,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"271":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"248":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"259":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"235":{"tf":1.0},"264":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"279":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"270":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.0},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"239":{"tf":1.0},"25":{"tf":2.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":1.4142135623730951},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"268":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"276":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":58,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"258":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"235":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.0},"259":{"tf":1.0},"271":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"271":{"tf":3.3166247903554},"272":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"271":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"262":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.8284271247461903},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"264":{"tf":1.4142135623730951},"280":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"280":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"228":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"278":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"281":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.47213595499958},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":8,"docs":{"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.23606797749979},"166":{"tf":1.0},"182":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"278":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"237":{"tf":1.0}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":29,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.4142135623730951},"262":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"281":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":49,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":2.6457513110645907},"281":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"235":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"238":{"tf":1.0}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.7416573867739413},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":8,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"50":{"tf":2.23606797749979}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"252":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"195":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"238":{"tf":1.0},"264":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"280":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"131":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"4":{"tf":2.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"281":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"278":{"tf":1.4142135623730951},"279":{"tf":2.449489742783178},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"262":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"258":{"tf":1.0},"26":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":7,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"270":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"281":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"240":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.0},"264":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"281":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"240":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.4142135623730951},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":3.3166247903554},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":2.449489742783178},"276":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"281":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"241":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"242":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"243":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"236":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"2":{"df":1,"docs":{"266":{"tf":1.0}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"280":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"109":{"tf":2.0},"112":{"tf":2.449489742783178},"113":{"tf":3.3166247903554},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":1.0},"244":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":3.4641016151377544},"276":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"270":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"270":{"tf":1.0}}},"df":1,"docs":{"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":52,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":3.3166247903554},"196":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.0},"266":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":3.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.7320508075688772}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"281":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"270":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":4.242640687119285},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":21,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"247":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"breadcrumbs":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.7416573867739413},"272":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"272":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"271":{"tf":2.449489742783178}}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"2":{"df":1,"docs":{"272":{"tf":1.0}}},"3":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":3.4641016151377544},"196":{"tf":2.0},"266":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"271":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"271":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"69":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"264":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"266":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":9,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"266":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":14,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"271":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0},"86":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"266":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"7":{"df":1,"docs":{"271":{"tf":1.0}}},"8":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"265":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"271":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"235":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":2.6457513110645907},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"281":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"271":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"264":{"tf":1.0},"266":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.23606797749979},"44":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":2.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"251":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"281":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"271":{"tf":1.0}},"n":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"244":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951},"86":{"tf":2.0},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.4142135623730951},"278":{"tf":2.6457513110645907},"279":{"tf":2.6457513110645907},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"133":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"235":{"tf":2.0},"24":{"tf":1.4142135623730951},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"269":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"235":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.23606797749979},"281":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"261":{"tf":1.7320508075688772},"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"241":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"266":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"249":{"tf":1.0},"257":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"268":{"tf":1.0},"281":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"229":{"tf":1.0},"235":{"tf":1.7320508075688772},"239":{"tf":1.0},"24":{"tf":1.0},"270":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"272":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.0},"266":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"258":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"278":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":12,"docs":{"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"256":{"tf":1.0},"269":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"235":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"261":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"268":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"279":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":2.0},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":2.449489742783178},"270":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":3.4641016151377544},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"268":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"10":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":26,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"263":{"tf":1.0},"271":{"tf":2.23606797749979},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":2.449489742783178}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":62,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"229":{"tf":1.0},"259":{"tf":1.0},"278":{"tf":2.0},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.3166247903554},"66":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"262":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.358898943540674},"158":{"tf":2.449489742783178},"249":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":4.0},"272":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":2.0},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"4":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"271":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"237":{"tf":1.0},"260":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"237":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"271":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":2.8284271247461903},"267":{"tf":2.0},"271":{"tf":7.211102550927978},"272":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"266":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"250":{"tf":1.4142135623730951}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":2.0},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"280":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"264":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"281":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.23606797749979},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"279":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.23606797749979},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":4.358898943540674},"272":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"264":{"tf":1.7320508075688772},"270":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"252":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"280":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"239":{"tf":1.4142135623730951},"242":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"264":{"tf":1.4142135623730951},"265":{"tf":2.0},"266":{"tf":3.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"281":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"271":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":3.0},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":2.0},"219":{"tf":1.0},"223":{"tf":1.0},"264":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"271":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"237":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"271":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"122":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"270":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"268":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"281":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"277":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"276":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"253":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"264":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"251":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"280":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":2.23606797749979},"200":{"tf":2.0},"201":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"239":{"tf":1.0},"261":{"tf":1.0},"264":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":29,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.0},"28":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"279":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"239":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"252":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"15":{"tf":1.0},"272":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"266":{"tf":4.69041575982343},"272":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"278":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"239":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"258":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.449489742783178},"273":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"235":{"tf":1.0},"253":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"80":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"264":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"280":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":71,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":3.1622776601683795},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"102":{"tf":3.0},"103":{"tf":3.7416573867739413},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.1622776601683795},"113":{"tf":4.123105625617661},"114":{"tf":3.3166247903554},"115":{"tf":2.8284271247461903},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":2.8284271247461903},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":2.0},"264":{"tf":4.123105625617661},"266":{"tf":3.1622776601683795},"267":{"tf":2.6457513110645907},"268":{"tf":1.4142135623730951},"269":{"tf":4.123105625617661},"270":{"tf":3.605551275463989},"271":{"tf":4.898979485566356},"272":{"tf":3.1622776601683795},"273":{"tf":2.8284271247461903},"276":{"tf":3.4641016151377544},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.8284271247461903},"281":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"280":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"278":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"281":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"251":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"282":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"278":{"tf":2.0},"280":{"tf":2.0},"281":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"229":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"a":{"df":2,"docs":{"266":{"tf":1.0},"267":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"280":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"238":{"tf":1.0},"276":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.4641016151377544},"118":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":2.0},"103":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.0},"278":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}}},"c":{"df":3,"docs":{"270":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0}}},"df":3,"docs":{"270":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0}}}},"p":{"df":1,"docs":{"270":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"269":{"tf":3.0},"276":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"251":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"269":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"237":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"280":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"234":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"255":{"tf":1.0},"260":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907},"272":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"262":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"259":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"174":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.1622776601683795},"265":{"tf":1.0},"266":{"tf":2.449489742783178},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"239":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"235":{"tf":1.0},"264":{"tf":1.0},"276":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"263":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"233":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"242":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"264":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}}},"1":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":3.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"264":{"tf":1.0},"272":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"266":{"tf":1.0},"276":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.6457513110645907},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"199":{"tf":1.0},"271":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"279":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"279":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"256":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.449489742783178},"152":{"tf":1.0},"270":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"264":{"tf":1.0},"273":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"242":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.4142135623730951}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"252":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"266":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"271":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"276":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"270":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"271":{"tf":2.6457513110645907},"272":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"264":{"tf":1.4142135623730951},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"237":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"237":{"tf":1.0},"244":{"tf":1.0},"264":{"tf":1.4142135623730951},"282":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"282":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":48,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"234":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"280":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":113,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":3.872983346207417},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"277":{"tf":1.7320508075688772},"278":{"tf":3.4641016151377544},"279":{"tf":1.0},"28":{"tf":1.4142135623730951},"280":{"tf":2.8284271247461903},"281":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.605551275463989},"90":{"tf":3.1622776601683795},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"279":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"269":{"tf":1.0},"280":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":61,"docs":{"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"252":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"264":{"tf":1.0},"271":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"266":{"tf":2.0},"271":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"266":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"266":{"tf":1.4142135623730951},"271":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.23606797749979},"279":{"tf":1.0},"280":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"274":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"276":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"274":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"276":{"tf":1.7320508075688772},"278":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"264":{"tf":1.0},"281":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"282":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"268":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"281":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"235":{"tf":1.0},"241":{"tf":1.0},"253":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"279":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"271":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"264":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"176":{"tf":2.0},"18":{"tf":1.0},"188":{"tf":2.0},"19":{"tf":2.0},"199":{"tf":2.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":2.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.4142135623730951},"264":{"tf":2.449489742783178},"265":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.7320508075688772},"271":{"tf":2.23606797749979},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"253":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"244":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"229":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"262":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"254":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"166":{"tf":1.0},"235":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":3.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.0},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.4142135623730951},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"244":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"237":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.4142135623730951},"266":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"236":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"278":{"tf":2.6457513110645907},"280":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"278":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"261":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"264":{"tf":1.0}}}}},"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":74,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"252":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"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.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"262":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"264":{"tf":2.23606797749979},"271":{"tf":1.0},"273":{"tf":1.4142135623730951},"274":{"tf":1.7320508075688772},"275":{"tf":1.7320508075688772},"276":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"271":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"266":{"tf":1.0},"271":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"272":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"281":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"272":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"278":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"255":{"tf":1.0},"262":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"278":{"tf":2.23606797749979},"280":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":28,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"263":{"tf":1.0},"277":{"tf":2.23606797749979},"278":{"tf":2.449489742783178},"279":{"tf":3.1622776601683795},"280":{"tf":3.872983346207417},"281":{"tf":3.872983346207417},"282":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":3.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"224":{"tf":1.0},"282":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"237":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":2.449489742783178},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"232":{"tf":1.0},"233":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"242":{"tf":1.7320508075688772},"243":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"228":{"tf":1.0},"264":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"280":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"266":{"tf":3.7416573867739413},"272":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"271":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"279":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"176":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"204":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":46,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"236":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":2.0},"273":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":4.358898943540674},"44":{"tf":2.8284271247461903},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":35,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.872983346207417},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":3.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"281":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"w":{"c":{"df":2,"docs":{"87":{"tf":2.8284271247461903},"88":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"240":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"271":{"tf":1.4142135623730951},"281":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"263":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"272":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.358898943540674},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"269":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"256":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"256":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"258":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"253":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"278":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"270":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"264":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"229":{"tf":1.0},"273":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"276":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"266":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"266":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.0}}},"4":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"271":{"tf":1.0}}},"6":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"272":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.4142135623730951},"258":{"tf":1.0},"270":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"259":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":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":{"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"270":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"229":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.0},"250":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"230":{"tf":1.0},"281":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"266":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"266":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"272":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"155":{"tf":1.0},"209":{"tf":1.0},"258":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"271":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"277":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"278":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"264":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":2.0},"275":{"tf":2.0},"276":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.4142135623730951},"266":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"227":{"tf":1.0},"25":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"282":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"228":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"237":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"271":{"tf":1.0},"272":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":21,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":2.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"270":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"227":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"242":{"tf":1.0},"247":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":2.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":23,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.7320508075688772},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"253":{"tf":1.0},"278":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"270":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"228":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0}}}},"df":3,"docs":{"266":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"277":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"266":{"tf":2.0},"267":{"tf":1.0},"271":{"tf":3.605551275463989},"272":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"237":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"271":{"tf":2.449489742783178},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"276":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.605551275463989},"256":{"tf":1.0},"266":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.1622776601683795},"36":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"242":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"272":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"229":{"tf":1.0},"23":{"tf":2.0},"278":{"tf":1.0},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":36,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"229":{"tf":1.4142135623730951},"24":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":3.0},"281":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"270":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"280":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"270":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":56,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.7320508075688772},"264":{"tf":1.7320508075688772},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"270":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"280":{"tf":1.0}}}}},"df":1,"docs":{"271":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"280":{"tf":1.0}},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"270":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"230":{"tf":1.4142135623730951},"281":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"266":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":22,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"234":{"tf":1.0},"258":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"252":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"254":{"tf":1.4142135623730951}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"260":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":2.0},"128":{"tf":2.23606797749979},"129":{"tf":2.449489742783178},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"201":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"269":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.7320508075688772},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"230":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":2.8284271247461903},"272":{"tf":1.7320508075688772},"281":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":48,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"231":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"268":{"tf":1.0},"276":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"229":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"266":{"tf":1.7320508075688772},"272":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"278":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"278":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"266":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.7320508075688772},"26":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":3.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"263":{"tf":1.0},"264":{"tf":3.3166247903554},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"271":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":2.0}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"232":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":4.123105625617661},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"233":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"271":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"260":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"242":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"266":{"tf":1.0},"272":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"255":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"271":{"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":42,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":2.0},"219":{"tf":1.0},"235":{"tf":1.0},"242":{"tf":1.0},"263":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":2.449489742783178},"271":{"tf":2.0},"276":{"tf":2.23606797749979},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"279":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"278":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"264":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":2.0},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"264":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"271":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"280":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"281":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"276":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"261":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"252":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.7320508075688772},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"266":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"259":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"43":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"212":{"tf":1.4142135623730951},"253":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"236":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"262":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"271":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"266":{"tf":5.0990195135927845},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":2.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"253":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"239":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"255":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"279":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"256":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"271":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.7320508075688772},"234":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"269":{"tf":2.23606797749979},"270":{"tf":1.7320508075688772},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":2.23606797749979},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"234":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"276":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"281":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"271":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"278":{"tf":1.0},"280":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"258":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"271":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"264":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"264":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"281":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"241":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"r":{"d":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"278":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":72,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"261":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"266":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"271":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":2.23606797749979},"272":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"268":{"tf":1.0},"271":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"257":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"271":{"tf":2.23606797749979},"272":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":47,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"259":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"235":{"tf":1.0},"264":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":2.449489742783178},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"266":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"278":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"279":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"270":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"239":{"tf":1.0},"25":{"tf":2.0},"264":{"tf":1.0},"269":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":25,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"263":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"239":{"tf":1.0},"268":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"264":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"278":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"280":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"281":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"279":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"276":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"268":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":63,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.0},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"278":{"tf":1.4142135623730951},"280":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"268":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"151":{"tf":2.6457513110645907},"152":{"tf":1.7320508075688772},"258":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"235":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"248":{"tf":1.4142135623730951},"259":{"tf":1.4142135623730951},"271":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"266":{"tf":1.0},"268":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"271":{"tf":3.3166247903554},"272":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"271":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"266":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.4142135623730951},"277":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":77,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.6457513110645907},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.4142135623730951},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.6457513110645907},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.4142135623730951},"247":{"tf":1.0},"253":{"tf":1.0},"259":{"tf":1.4142135623730951},"260":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"278":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":3.1622776601683795},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"264":{"tf":1.4142135623730951},"280":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"280":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"236":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"239":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.1622776601683795},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"268":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"264":{"tf":1.4142135623730951},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"271":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":12,"docs":{"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"228":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"251":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":2.6457513110645907},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"278":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"281":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"278":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"237":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"266":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"278":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"236":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.58257569495584},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":9,"docs":{"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"278":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"279":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"266":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"237":{"tf":1.4142135623730951}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"235":{"tf":1.0},"258":{"tf":1.7320508075688772},"261":{"tf":1.7320508075688772},"262":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"281":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":49,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"229":{"tf":1.0},"234":{"tf":1.4142135623730951},"235":{"tf":1.0},"239":{"tf":1.0},"242":{"tf":1.0},"244":{"tf":1.0},"252":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"258":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"264":{"tf":1.0},"270":{"tf":1.7320508075688772},"273":{"tf":2.0},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":2.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"242":{"tf":1.0},"266":{"tf":1.0},"278":{"tf":1.4142135623730951},"280":{"tf":2.6457513110645907},"281":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"235":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"238":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.872983346207417},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":11,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"252":{"tf":1.0},"262":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":2.0},"195":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"238":{"tf":1.0},"264":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"266":{"tf":2.23606797749979},"267":{"tf":1.0},"271":{"tf":2.23606797749979},"272":{"tf":2.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"239":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.7320508075688772},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"272":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"280":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"263":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":35,"docs":{"131":{"tf":1.0},"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"272":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"278":{"tf":2.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"266":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"281":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"269":{"tf":1.4142135623730951},"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"269":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"269":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"229":{"tf":1.0},"231":{"tf":1.0},"235":{"tf":2.23606797749979},"237":{"tf":1.4142135623730951},"239":{"tf":1.0},"242":{"tf":1.0},"250":{"tf":1.0},"263":{"tf":1.0},"266":{"tf":1.0},"268":{"tf":1.0},"27":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"278":{"tf":1.7320508075688772},"279":{"tf":2.6457513110645907},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"262":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"258":{"tf":1.0},"26":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":2.0},"279":{"tf":1.0},"280":{"tf":2.0},"281":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":42,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"270":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"281":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":2.0},"272":{"tf":1.4142135623730951},"276":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"271":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"271":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"266":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"270":{"tf":1.0},"278":{"tf":1.0},"28":{"tf":2.0},"282":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"264":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":1.4142135623730951}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"236":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"281":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"281":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"240":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"264":{"tf":2.6457513110645907},"266":{"tf":1.7320508075688772},"268":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":3.3166247903554},"271":{"tf":1.4142135623730951},"272":{"tf":2.0},"273":{"tf":2.6457513110645907},"276":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"276":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"239":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":17,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"266":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"281":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":13,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.872983346207417},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"241":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"266":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"278":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"264":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":2.0},"270":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"242":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.4142135623730951},"243":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"269":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"236":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"227":{"tf":1.0},"236":{"tf":1.0},"271":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"241":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"281":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"278":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"270":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":1.4142135623730951},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"264":{"tf":1.0},"266":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"278":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"266":{"tf":1.0}}},"2":{"df":1,"docs":{"266":{"tf":1.0}}},"3":{"df":1,"docs":{"266":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"236":{"tf":1.0},"261":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":2.23606797749979},"269":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"271":{"tf":2.6457513110645907},"272":{"tf":1.0},"276":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.7320508075688772},"282":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"280":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"239":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"269":{"tf":1.0},"281":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":3.0},"156":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"276":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.6457513110645907},"113":{"tf":3.4641016151377544},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"125":{"tf":1.0},"126":{"tf":1.0},"244":{"tf":1.4142135623730951},"266":{"tf":1.0},"269":{"tf":3.4641016151377544},"276":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"30":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"270":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"270":{"tf":1.0}}},"df":1,"docs":{"270":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.449489742783178},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"234":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"25":{"tf":1.7320508075688772},"270":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":3.605551275463989},"196":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"245":{"tf":1.4142135623730951},"266":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":2.449489742783178},"52":{"tf":3.1622776601683795},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.8284271247461903},"86":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"246":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"98":{"tf":2.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"281":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"270":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"271":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"280":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":9,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":20,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":2.6457513110645907},"195":{"tf":4.47213595499958},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"201":{"tf":1.7320508075688772},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"281":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"276":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"271":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"df":21,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"274":{"tf":1.0},"275":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"266":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"264":{"tf":1.0},"266":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"271":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"247":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"247":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"title":{"root":{"1":{"1":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.0}}},"2":{"3":{".":{"0":{"5":{"df":2,"docs":{"185":{"tf":1.0},"188":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"9":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}},"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"264":{"tf":1.0},"66":{"tf":1.0}}}}},"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":5,"docs":{"131":{"tf":1.0},"271":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"x":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"6":{"4":{"df":2,"docs":{"115":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"261":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}},"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"268":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"a":{"df":3,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"249":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"268":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"/":{"c":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":1,"docs":{"250":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"265":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"141":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"260":{"tf":1.0}}}}}}}},"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":{"48":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"c":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"276":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"118":{"tf":1.0}}}}},"df":2,"docs":{"102":{"tf":1.0},"119":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"251":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"216":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"264":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"266":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"x":{"df":4,"docs":{"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":1,"docs":{"273":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"218":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"df":30,"docs":{"0":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"252":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":2,"docs":{"220":{"tf":1.0},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"275":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"253":{"tf":1.0}}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":2,"docs":{"264":{"tf":1.0},"66":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"145":{"tf":1.0},"194":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"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":3,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"278":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"170":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"280":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"265":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"y":{"df":4,"docs":{"153":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"191":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"74":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"120":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"h":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"27":{"tf":1.0}}},"6":{"df":1,"docs":{"28":{"tf":1.0}}},"7":{"df":1,"docs":{"29":{"tf":1.0}}},"8":{"df":1,"docs":{"30":{"tf":1.0}}},"9":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}}},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"227":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":4,"docs":{"155":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"228":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"—":{"df":0,"docs":{},"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":{"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"146":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":3,"docs":{"229":{"tf":1.0},"279":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"281":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"161":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"230":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"254":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":1,"docs":{"231":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"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":{"121":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"232":{"tf":1.0}},"e":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"233":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"255":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"256":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":4,"docs":{"197":{"tf":1.0},"234":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0}}}}}},"r":{"a":{"df":1,"docs":{"257":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"205":{"tf":1.0},"248":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"263":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":11,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"269":{"tf":1.0},"276":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"258":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"235":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"248":{"tf":1.0},"259":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"260":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"70":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"270":{"tf":1.0},"73":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"236":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"262":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"237":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"261":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"141":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"128":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"130":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"277":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"c":{"b":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"l":{"df":1,"docs":{"240":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"151":{"tf":1.0},"28":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"266":{"tf":1.0},"273":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"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":2,"docs":{"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"241":{"tf":1.0}},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":1,"docs":{"268":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"242":{"tf":1.0}}}}},"i":{"df":2,"docs":{"196":{"tf":1.0},"243":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":6,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"244":{"tf":1.0}}}}},"i":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":12,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"245":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":3,"docs":{"246":{"tf":1.0},"37":{"tf":1.0},"98":{"tf":1.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}},"8":{"6":{"df":3,"docs":{"117":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"247":{"tf":1.0}}},"df":0,"docs":{}}}}}},"lang":"English","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":["index.html#about-ghaf","index.html#embedded-virtualization","index.html#ghaf-platform-applications","index.html#design-principles","index.html#build-system-and-supply-chain","features/features.html#features","features/features.html#status","features/features.html#reference-devices","features/features.html#release-builds-and-hardware-architecture-support","features/features.html#development","features/features.html#target-architecture","features/features.html#applications-and-vm-control","features/features.html#next-steps","architecture/architecture.html#architecture","architecture/architecture.html#in-this-chapter","architecture/variants.html#architectural-variants","architecture/adr.html#architecture-decision-records","architecture/adr/minimal-host.html#minimal-host","architecture/adr/minimal-host.html#status","architecture/adr/minimal-host.html#context","architecture/adr/minimal-host.html#requirements","architecture/adr/minimal-host.html#decision","architecture/adr/minimal-host.html#consequences","architecture/adr/minimal-host.html#defined-in-nix-mh01","architecture/adr/minimal-host.html#reduced-profile-mh02","architecture/adr/minimal-host.html#no-networking-mh03","architecture/adr/minimal-host.html#no-graphics-mh04","architecture/adr/minimal-host.html#no-getty-mh05","architecture/adr/minimal-host.html#no-nix-toolings-mh06","architecture/adr/minimal-host.html#minimal-defconfig-mh07","architecture/adr/minimal-host.html#update-via-adminvm-mh08","architecture/adr/minimal-host.html#read-only-filesystem-mh09","architecture/adr/netvm.html#netvmnetworking-virtual-machine","architecture/adr/netvm.html#status","architecture/adr/netvm.html#context","architecture/adr/netvm.html#decision","architecture/adr/netvm.html#consequences","architecture/adr/platform-bus-passthrough-support.html#rust-vmmbus-passthrough-support-for-rust-vmms","architecture/adr/platform-bus-passthrough-support.html#status","architecture/adr/platform-bus-passthrough-support.html#context","architecture/adr/platform-bus-passthrough-support.html#decision","architecture/hardening.html#hardening","architecture/hardening.html#kernel","architecture/hardening.html#kernel-hardening-process","architecture/hardening.html#host-kernel","architecture/secureboot.html#secure-boot","architecture/secureboot.html#enabling-secure-boot","architecture/secureboot.html#creating-secure-boot-keys","architecture/secureboot.html#current-implementation","architecture/secureboot.html#secure-boot-verification","architecture/stack.html#stack","architecture/stack.html#system-vms","architecture/stack.html#application-or-service-vm","architecture/stack.html#guest-oss","appendices/contributing_general.html#contribution-guidelines","ref_impl/reference_implementations.html#reference-implementations","ref_impl/reference_implementations.html#approach","ref_impl/reference_implementations.html#example","ref_impl/reference_implementations.html#in-this-chapter","ref_impl/development.html#development","ref_impl/build_and_run.html#build-and-run","ref_impl/build_and_run.html#prerequisites","ref_impl/build_and_run.html#running-ghaf-image-for-x86-vm-ghaf-host","ref_impl/build_and_run.html#running-ghaf-image-for-x86-computer","ref_impl/build_and_run.html#running-ghaf-image-for-lenovo-x1","ref_impl/build_and_run.html#ghaf-image-for-nvidia-jetson-orin-agx","ref_impl/build_and_run.html#building-ghaf-image-for-nxp-imx-8qm-mek","ref_impl/build_and_run.html#building-ghaf-image-for-microchip-icicle-kit","ref_impl/remote_build_setup.html#running-remote-build-on-nixos","ref_impl/remote_build_setup.html#1-configuring-ssh-keys","ref_impl/remote_build_setup.html#2-setting-up-configuration-files","ref_impl/remote_build_setup.html#troubleshooting","ref_impl/remote_build_setup.html#single-user-nix-installation-issues","ref_impl/remote_build_setup.html#vpn-setup-for-remote-access","ref_impl/remote_build_setup.html#private-key-on-local-machine-not-matching-public-key-on-remote-machine","ref_impl/installer.html#installer","ref_impl/installer.html#configuring-and-building-installer-for-ghaf","ref_impl/installer.html#adding-installer-modules","ref_impl/installer.html#built-in-installer-modules","ref_impl/installer.html#flushimage","ref_impl/cross_compilation.html#cross-compilation","ref_impl/cross_compilation.html#cross-compilation-for-microchip-icicle-kit-riscv64","ref_impl/cross_compilation.html#future-cross-compilation-support","ref_impl/cross_compilation.html#binfmt-emulated-build","ref_impl/creating_appvm.html#creating-application-vm","ref_impl/creating_appvm.html#adding-appvm-description","ref_impl/creating_appvm.html#adding-application-launcher-in-gui-vm","ref_impl/labwc.html#labwc-desktop-environment","ref_impl/labwc.html#window-border-coloring","ref_impl/ghaf-based-project.html#ghaf-as-library-templates","ref_impl/ghaf-based-project.html#using-ghaf-templates","ref_impl/ghaf-based-project.html#updating-ghaf-revision","ref_impl/ghaf-based-project.html#customizing-ghaf-modules","ref_impl/example_project.html#example-project","ref_impl/example_project.html#troubleshooting-for-lenovo-x1-laptop","ref_impl/modules_options.html","technologies/technologies.html#technologies","technologies/technologies.html#hardware-requirements-for-virtualization","technologies/technologies.html#virtual-machine-manager-vmm","technologies/technologies.html#in-this-chapter","technologies/compartment.html#compartmentalization","technologies/passthrough.html#devices-passthrough","technologies/vfio.html#binding-devices-to-vfio-driver-to-allow-passthrough","technologies/vfio.html#using-driverctl-package","technologies/nvidia_agx_pt_uart.html#nvidia-jetson-agx-orin-uart-passthrough","technologies/nvidia_agx_pt_uart.html#uart-connections","technologies/nvidia_agx_pt_uart.html#uarti-selected-for-passthrough","technologies/nvidia_agx_pt_uart.html#host-device-tree","technologies/nvidia_agx_pt_uart.html#guest-device-tree","technologies/nvidia_agx_pt_uart.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#nvidia-jetson-agx-orin-pcie-passthrough","technologies/nvidia_agx_pt_pcie.html#pcie-slots-in-nvidia-jetson-agx-orin","technologies/nvidia_agx_pt_pcie.html#enabling-pcie-devices-for-vfio","technologies/nvidia_agx_pt_pcie.html#binding-device-for-vfio","technologies/nvidia_agx_pt_pcie.html#starting-guest-vm","technologies/nvidia_agx_pt_pcie.html#arm64-pci-device-interrupts","technologies/nvidia_agx_pt_pcie.html#more-work-for-arm64","technologies/x86_pcie_crosvm.html#x86-pcie-device-passthrough-with-crosvm","technologies/x86_pcie_crosvm.html#enabling-pcie-devices-for-vfio-with-driverctl","technologies/x86_pcie_crosvm.html#reseting-driver-to-original-state-afterwards","technologies/nvidia_virtualization_bpmp.html#nvidia-jetson-agx-orin-boot-and-power-management-processor-virtualization","technologies/nvidia_virtualization_bpmp.html#architectural-overview","technologies/nvidia_virtualization_bpmp.html#use-cases","technologies/nvidia_virtualization_bpmp.html#using-bpmp-virtualization-options-on-nvidia-jetson-agx-orin","technologies/nvidia_virtualization_bpmp.html#testing","technologies/nvidia_virtualization_bpmp.html#host-testing","technologies/nvidia_virtualization_bpmp.html#guest-for-uarta-testing","technologies/nvidia_virtualization_bpmp.html#related-topics","technologies/hypervisor_options.html#ghaf-specific-microvm-hypervisor-options","technologies/hypervisor_options.html#options-definitions","technologies/hypervisor_options.html#generated-hypervisor-start-commands","technologies/hypervisor_options.html#adding-option-to-hypervisor-command-line","scs/ci-cd-system.html#continuous-integration-and-distribution","scs/ci-cd-system.html#general-process","scs/scs.html#supply-chain-security","scs/scs.html#in-this-chapter","scs/slsa-framework.html#slsa-framework","scs/slsa-framework.html#slsa-terminology","scs/slsa-framework.html#levels-of-assurance","scs/slsa-framework.html#requirements","scs/basics.html#basic-security-measures","scs/basics.html#source-code--version-control-security","scs/basics.html#commit-signing","scs/basics.html#branch-protection","scs/basics.html#software-signing","scs/basics.html#enabling-image-signing-on-hydra","scs/basics.html#shared-nix-store","scs/basics.html#data-encryption-in-transit","scs/sbom.html#software-bill-of-materials-sbom","scs/sbom.html#sbom-formats-and-specifications","scs/sbom.html#sbom-usage-in-ghaf","scs/sbom.html#sbom-tooling-in-ghaf","scs/sbom.html#references","scs/pki.html#public-key-infrastructure","scs/pki.html#private-certificate-authority-pca","scs/pki.html#hardware-security-module","scs/pki.html#hsm-variants-for-consideration","scs/pki.html#ca-hierarchy-options","scs/pki.html#proposed-ca-hierarchy","scs/ghaf-security-fix-automation.html#security-fix-automation","scs/ghaf-security-fix-automation.html#semi-automated-upstream-first-process","release_notes/release_notes.html#ghaf-release-notes","release_notes/release_notes.html#in-this-chapter","release_notes/ghaf-23.12.html#release-ghaf-2312","release_notes/ghaf-23.12.html#release-branch","release_notes/ghaf-23.12.html#supported-hardware","release_notes/ghaf-23.12.html#what-is-new-in-ghaf-2312","release_notes/ghaf-23.12.html#bug-fixes","release_notes/ghaf-23.12.html#known-issues-and-limitations","release_notes/ghaf-23.12.html#environment-requirements","release_notes/ghaf-23.12.html#installation-instructions","release_notes/ghaf-23.09.html#release-ghaf-2309","release_notes/ghaf-23.09.html#release-branch","release_notes/ghaf-23.09.html#supported-hardware","release_notes/ghaf-23.09.html#what-is-new-in-ghaf-2309","release_notes/ghaf-23.09.html#bug-fixes","release_notes/ghaf-23.09.html#known-issues-and-limitations","release_notes/ghaf-23.09.html#environment-requirements","release_notes/ghaf-23.09.html#installation-instructions","release_notes/ghaf-23.06.html#release-ghaf-2306","release_notes/ghaf-23.06.html#release-branch","release_notes/ghaf-23.06.html#supported-hardware","release_notes/ghaf-23.06.html#what-is-new-in-ghaf-2306","release_notes/ghaf-23.06.html#bug-fixes","release_notes/ghaf-23.06.html#known-issues-and-limitations","release_notes/ghaf-23.05.html#release-ghaf-2305","release_notes/ghaf-23.05.html#release-branch","release_notes/ghaf-23.05.html#supported-hardware","release_notes/ghaf-23.05.html#what-is-new-in-ghaf-2305","release_notes/ghaf-23.05.html#known-issues-and-limitations","scenarios/showcases.html#showcases","scenarios/showcases.html#secure-laptop","scenarios/showcases.html#in-this-chapter","scenarios/run_win_vm.html#running-windows-11-in-vm-on-ghaf","scenarios/run_win_vm.html#getting-windows-11-image","scenarios/run_win_vm.html#running-windows-11-in-vm","scenarios/run_win_vm.html#using-ui-to-launch-windows-11-vm","scenarios/run_win_vm.html#passing-additional-parameters-to-qemu","scenarios/run_cuttlefish.html#running-android-cuttlefish-virtual-device-on-ghaf","scenarios/run_cuttlefish.html#installing-cuttlefish","scenarios/run_cuttlefish.html#running-cuttlefish","scenarios/run_cuttlefish.html#connecting-to-cuttlefish-device","appendices/glossary.html#glossary","appendices/glossary.html#appropriate-use-of-articles-before-abbreviations","appendices/glossary.html#trivia","appendices/glossary.html#project-related","appendices/glossary.html#ghaf","appendices/glossary.html#cicd","appendices/glossary.html#ssrc","appendices/glossary.html#tii","appendices/glossary.html#core-concepts","appendices/glossary.html#adr","appendices/glossary.html#bpmp","appendices/glossary.html#bsp","appendices/glossary.html#dhcp","appendices/glossary.html#dma","appendices/glossary.html#emmc-e-mmc","appendices/glossary.html#eula","appendices/glossary.html#fw","appendices/glossary.html#gala","appendices/glossary.html#gui","appendices/glossary.html#ids","appendices/glossary.html#iommu","appendices/glossary.html#ip","appendices/glossary.html#isa","appendices/glossary.html#kvm","appendices/glossary.html#kvms","appendices/glossary.html#labws-labws","appendices/glossary.html#mmu","appendices/glossary.html#msi","appendices/glossary.html#nixos","appendices/glossary.html#oem","appendices/glossary.html#os","appendices/glossary.html#pci","appendices/glossary.html#pcie","appendices/glossary.html#qemu","appendices/glossary.html#sbsa","appendices/glossary.html#sku","appendices/glossary.html#soc","appendices/glossary.html#ssd","appendices/glossary.html#tcb","appendices/glossary.html#tls","appendices/glossary.html#uart","appendices/glossary.html#uefi","appendices/glossary.html#ui","appendices/glossary.html#vfio","appendices/glossary.html#vm","appendices/glossary.html#vmm","appendices/glossary.html#zta","appendices/glossary.html#scs-related","appendices/glossary.html#ca","appendices/glossary.html#cms","appendices/glossary.html#eddsa","appendices/glossary.html#gpg","appendices/glossary.html#hsm","appendices/glossary.html#openssl","appendices/glossary.html#pki","appendices/glossary.html#pynacl","appendices/glossary.html#ra","appendices/glossary.html#sbom","appendices/glossary.html#scs","appendices/glossary.html#secure-cryptoprocessor","appendices/glossary.html#software-artifact","appendices/glossary.html#slsa","research/research.html#research-notes","research/passthrough/ethernet.html#imx-8qm-ethernet-passthrough","research/passthrough/ethernet.html#host-kernel-configuration","research/passthrough/ethernet.html#host-device-tree-explained","research/passthrough/ethernet.html#other-notes-about-passthrough","research/passthrough/ethernet.html#changes-in-u-boot","research/passthrough/ethernet.html#running-platform-device-passthrough-in-qemu","research/passthrough/ethernet.html#guest-setup","research/passthrough/ethernet.html#adding-devices-to-guest","research/passthrough/ethernet.html#some-final-touches-for-guest-devices","research/passthrough/ethernet.html#compiling-the-device-tree-source-to-binary-form","research/passthrough/ethernet.html#compiling-for-guest","research/passthrough/ethernet.html#compiling-for-host","research/passthrough/ethernet.html#running-qemu-with-passthrough-platform-devices","research/installation.html#approaches-to-ghaf-system-installation","research/installation.html#ghaf-initial-approach","research/installation.html#nixos-approach","research/installation.html#modular-interactive","research/installation.html#declarative-non-interactive-installation","research/installation.html#discussion"],"index":{"documentStore":{"docInfo":{"0":{"body":119,"breadcrumbs":2,"title":1},"1":{"body":62,"breadcrumbs":3,"title":2},"10":{"body":129,"breadcrumbs":3,"title":2},"100":{"body":100,"breadcrumbs":3,"title":1},"101":{"body":77,"breadcrumbs":4,"title":2},"102":{"body":43,"breadcrumbs":12,"title":6},"103":{"body":123,"breadcrumbs":9,"title":3},"104":{"body":18,"breadcrumbs":14,"title":6},"105":{"body":211,"breadcrumbs":10,"title":2},"106":{"body":31,"breadcrumbs":11,"title":3},"107":{"body":87,"breadcrumbs":11,"title":3},"108":{"body":87,"breadcrumbs":11,"title":3},"109":{"body":117,"breadcrumbs":11,"title":3},"11":{"body":38,"breadcrumbs":4,"title":3},"110":{"body":22,"breadcrumbs":14,"title":6},"111":{"body":338,"breadcrumbs":14,"title":6},"112":{"body":114,"breadcrumbs":12,"title":4},"113":{"body":127,"breadcrumbs":11,"title":3},"114":{"body":59,"breadcrumbs":11,"title":3},"115":{"body":104,"breadcrumbs":12,"title":4},"116":{"body":179,"breadcrumbs":11,"title":3},"117":{"body":0,"breadcrumbs":12,"title":5},"118":{"body":127,"breadcrumbs":12,"title":5},"119":{"body":13,"breadcrumbs":12,"title":5},"12":{"body":8,"breadcrumbs":3,"title":2},"120":{"body":45,"breadcrumbs":15,"title":9},"121":{"body":59,"breadcrumbs":8,"title":2},"122":{"body":57,"breadcrumbs":8,"title":2},"123":{"body":42,"breadcrumbs":14,"title":8},"124":{"body":0,"breadcrumbs":7,"title":1},"125":{"body":35,"breadcrumbs":8,"title":2},"126":{"body":81,"breadcrumbs":9,"title":3},"127":{"body":15,"breadcrumbs":8,"title":2},"128":{"body":30,"breadcrumbs":8,"title":5},"129":{"body":43,"breadcrumbs":5,"title":2},"13":{"body":101,"breadcrumbs":2,"title":1},"130":{"body":161,"breadcrumbs":7,"title":4},"131":{"body":78,"breadcrumbs":8,"title":5},"132":{"body":38,"breadcrumbs":6,"title":3},"133":{"body":107,"breadcrumbs":5,"title":2},"134":{"body":121,"breadcrumbs":6,"title":3},"135":{"body":12,"breadcrumbs":4,"title":1},"136":{"body":24,"breadcrumbs":7,"title":2},"137":{"body":18,"breadcrumbs":7,"title":2},"138":{"body":154,"breadcrumbs":7,"title":2},"139":{"body":69,"breadcrumbs":6,"title":1},"14":{"body":14,"breadcrumbs":2,"title":1},"140":{"body":0,"breadcrumbs":9,"title":3},"141":{"body":16,"breadcrumbs":11,"title":5},"142":{"body":24,"breadcrumbs":8,"title":2},"143":{"body":34,"breadcrumbs":8,"title":2},"144":{"body":58,"breadcrumbs":8,"title":2},"145":{"body":43,"breadcrumbs":10,"title":4},"146":{"body":26,"breadcrumbs":9,"title":3},"147":{"body":25,"breadcrumbs":9,"title":3},"148":{"body":17,"breadcrumbs":10,"title":4},"149":{"body":76,"breadcrumbs":9,"title":3},"15":{"body":131,"breadcrumbs":5,"title":2},"150":{"body":48,"breadcrumbs":9,"title":3},"151":{"body":43,"breadcrumbs":9,"title":3},"152":{"body":18,"breadcrumbs":7,"title":1},"153":{"body":68,"breadcrumbs":9,"title":3},"154":{"body":45,"breadcrumbs":10,"title":4},"155":{"body":48,"breadcrumbs":9,"title":3},"156":{"body":148,"breadcrumbs":9,"title":3},"157":{"body":118,"breadcrumbs":9,"title":3},"158":{"body":29,"breadcrumbs":9,"title":3},"159":{"body":40,"breadcrumbs":9,"title":3},"16":{"body":47,"breadcrumbs":7,"title":3},"160":{"body":204,"breadcrumbs":11,"title":5},"161":{"body":19,"breadcrumbs":5,"title":3},"162":{"body":12,"breadcrumbs":3,"title":1},"163":{"body":0,"breadcrumbs":8,"title":3},"164":{"body":2,"breadcrumbs":7,"title":2},"165":{"body":25,"breadcrumbs":7,"title":2},"166":{"body":90,"breadcrumbs":8,"title":3},"167":{"body":40,"breadcrumbs":7,"title":2},"168":{"body":95,"breadcrumbs":8,"title":3},"169":{"body":4,"breadcrumbs":7,"title":2},"17":{"body":0,"breadcrumbs":8,"title":2},"170":{"body":80,"breadcrumbs":7,"title":2},"171":{"body":0,"breadcrumbs":8,"title":3},"172":{"body":2,"breadcrumbs":7,"title":2},"173":{"body":25,"breadcrumbs":7,"title":2},"174":{"body":61,"breadcrumbs":8,"title":3},"175":{"body":20,"breadcrumbs":7,"title":2},"176":{"body":116,"breadcrumbs":8,"title":3},"177":{"body":4,"breadcrumbs":7,"title":2},"178":{"body":47,"breadcrumbs":7,"title":2},"179":{"body":0,"breadcrumbs":8,"title":3},"18":{"body":1,"breadcrumbs":7,"title":1},"180":{"body":2,"breadcrumbs":7,"title":2},"181":{"body":16,"breadcrumbs":7,"title":2},"182":{"body":31,"breadcrumbs":8,"title":3},"183":{"body":9,"breadcrumbs":7,"title":2},"184":{"body":49,"breadcrumbs":8,"title":3},"185":{"body":0,"breadcrumbs":8,"title":3},"186":{"body":2,"breadcrumbs":7,"title":2},"187":{"body":16,"breadcrumbs":7,"title":2},"188":{"body":38,"breadcrumbs":8,"title":3},"189":{"body":55,"breadcrumbs":8,"title":3},"19":{"body":73,"breadcrumbs":7,"title":1},"190":{"body":22,"breadcrumbs":2,"title":1},"191":{"body":93,"breadcrumbs":3,"title":2},"192":{"body":7,"breadcrumbs":2,"title":1},"193":{"body":28,"breadcrumbs":10,"title":5},"194":{"body":83,"breadcrumbs":9,"title":4},"195":{"body":236,"breadcrumbs":9,"title":4},"196":{"body":58,"breadcrumbs":11,"title":6},"197":{"body":30,"breadcrumbs":9,"title":4},"198":{"body":51,"breadcrumbs":10,"title":6},"199":{"body":209,"breadcrumbs":6,"title":2},"2":{"body":42,"breadcrumbs":4,"title":3},"20":{"body":158,"breadcrumbs":7,"title":1},"200":{"body":29,"breadcrumbs":6,"title":2},"201":{"body":52,"breadcrumbs":7,"title":3},"202":{"body":118,"breadcrumbs":2,"title":1},"203":{"body":92,"breadcrumbs":6,"title":5},"204":{"body":20,"breadcrumbs":2,"title":1},"205":{"body":0,"breadcrumbs":3,"title":2},"206":{"body":10,"breadcrumbs":2,"title":1},"207":{"body":35,"breadcrumbs":2,"title":1},"208":{"body":22,"breadcrumbs":2,"title":1},"209":{"body":33,"breadcrumbs":2,"title":1},"21":{"body":41,"breadcrumbs":7,"title":1},"210":{"body":0,"breadcrumbs":3,"title":2},"211":{"body":32,"breadcrumbs":2,"title":1},"212":{"body":38,"breadcrumbs":2,"title":1},"213":{"body":10,"breadcrumbs":2,"title":1},"214":{"body":26,"breadcrumbs":2,"title":1},"215":{"body":21,"breadcrumbs":2,"title":1},"216":{"body":2,"breadcrumbs":4,"title":3},"217":{"body":4,"breadcrumbs":2,"title":1},"218":{"body":1,"breadcrumbs":2,"title":1},"219":{"body":37,"breadcrumbs":2,"title":1},"22":{"body":0,"breadcrumbs":7,"title":1},"220":{"body":3,"breadcrumbs":2,"title":1},"221":{"body":16,"breadcrumbs":2,"title":1},"222":{"body":4,"breadcrumbs":2,"title":1},"223":{"body":14,"breadcrumbs":2,"title":1},"224":{"body":13,"breadcrumbs":2,"title":1},"225":{"body":10,"breadcrumbs":2,"title":1},"226":{"body":10,"breadcrumbs":2,"title":1},"227":{"body":12,"breadcrumbs":3,"title":2},"228":{"body":3,"breadcrumbs":2,"title":1},"229":{"body":3,"breadcrumbs":2,"title":1},"23":{"body":37,"breadcrumbs":9,"title":3},"230":{"body":10,"breadcrumbs":2,"title":1},"231":{"body":3,"breadcrumbs":2,"title":1},"232":{"body":2,"breadcrumbs":2,"title":1},"233":{"body":3,"breadcrumbs":2,"title":1},"234":{"body":4,"breadcrumbs":2,"title":1},"235":{"body":9,"breadcrumbs":2,"title":1},"236":{"body":32,"breadcrumbs":2,"title":1},"237":{"body":10,"breadcrumbs":2,"title":1},"238":{"body":14,"breadcrumbs":2,"title":1},"239":{"body":3,"breadcrumbs":2,"title":1},"24":{"body":30,"breadcrumbs":9,"title":3},"240":{"body":23,"breadcrumbs":2,"title":1},"241":{"body":5,"breadcrumbs":2,"title":1},"242":{"body":7,"breadcrumbs":2,"title":1},"243":{"body":22,"breadcrumbs":2,"title":1},"244":{"body":2,"breadcrumbs":2,"title":1},"245":{"body":6,"breadcrumbs":2,"title":1},"246":{"body":2,"breadcrumbs":2,"title":1},"247":{"body":3,"breadcrumbs":2,"title":1},"248":{"body":7,"breadcrumbs":2,"title":1},"249":{"body":0,"breadcrumbs":3,"title":2},"25":{"body":105,"breadcrumbs":8,"title":2},"250":{"body":2,"breadcrumbs":2,"title":1},"251":{"body":3,"breadcrumbs":2,"title":1},"252":{"body":5,"breadcrumbs":2,"title":1},"253":{"body":13,"breadcrumbs":2,"title":1},"254":{"body":10,"breadcrumbs":2,"title":1},"255":{"body":5,"breadcrumbs":2,"title":1},"256":{"body":6,"breadcrumbs":2,"title":1},"257":{"body":9,"breadcrumbs":2,"title":1},"258":{"body":2,"breadcrumbs":2,"title":1},"259":{"body":14,"breadcrumbs":2,"title":1},"26":{"body":26,"breadcrumbs":8,"title":2},"260":{"body":10,"breadcrumbs":2,"title":1},"261":{"body":6,"breadcrumbs":3,"title":2},"262":{"body":11,"breadcrumbs":3,"title":2},"263":{"body":23,"breadcrumbs":2,"title":1},"264":{"body":14,"breadcrumbs":4,"title":2},"265":{"body":168,"breadcrumbs":10,"title":4},"266":{"body":22,"breadcrumbs":9,"title":3},"267":{"body":373,"breadcrumbs":10,"title":4},"268":{"body":55,"breadcrumbs":8,"title":2},"269":{"body":56,"breadcrumbs":9,"title":3},"27":{"body":29,"breadcrumbs":8,"title":2},"270":{"body":114,"breadcrumbs":11,"title":5},"271":{"body":112,"breadcrumbs":8,"title":2},"272":{"body":665,"breadcrumbs":9,"title":3},"273":{"body":254,"breadcrumbs":10,"title":4},"274":{"body":35,"breadcrumbs":12,"title":6},"275":{"body":27,"breadcrumbs":8,"title":2},"276":{"body":27,"breadcrumbs":8,"title":2},"277":{"body":129,"breadcrumbs":11,"title":5},"278":{"body":20,"breadcrumbs":8,"title":4},"279":{"body":152,"breadcrumbs":7,"title":3},"28":{"body":42,"breadcrumbs":9,"title":3},"280":{"body":120,"breadcrumbs":6,"title":2},"281":{"body":141,"breadcrumbs":6,"title":2},"282":{"body":174,"breadcrumbs":8,"title":4},"283":{"body":46,"breadcrumbs":5,"title":1},"29":{"body":29,"breadcrumbs":9,"title":3},"3":{"body":127,"breadcrumbs":3,"title":2},"30":{"body":16,"breadcrumbs":10,"title":4},"31":{"body":12,"breadcrumbs":9,"title":3},"32":{"body":0,"breadcrumbs":9,"title":3},"33":{"body":10,"breadcrumbs":7,"title":1},"34":{"body":56,"breadcrumbs":7,"title":1},"35":{"body":171,"breadcrumbs":7,"title":1},"36":{"body":37,"breadcrumbs":7,"title":1},"37":{"body":0,"breadcrumbs":14,"title":6},"38":{"body":3,"breadcrumbs":9,"title":1},"39":{"body":89,"breadcrumbs":9,"title":1},"4":{"body":62,"breadcrumbs":5,"title":4},"40":{"body":93,"breadcrumbs":9,"title":1},"41":{"body":8,"breadcrumbs":3,"title":1},"42":{"body":26,"breadcrumbs":3,"title":1},"43":{"body":148,"breadcrumbs":5,"title":3},"44":{"body":79,"breadcrumbs":4,"title":2},"45":{"body":18,"breadcrumbs":5,"title":2},"46":{"body":33,"breadcrumbs":6,"title":3},"47":{"body":40,"breadcrumbs":7,"title":4},"48":{"body":25,"breadcrumbs":5,"title":2},"49":{"body":67,"breadcrumbs":6,"title":3},"5":{"body":40,"breadcrumbs":2,"title":1},"50":{"body":78,"breadcrumbs":3,"title":1},"51":{"body":30,"breadcrumbs":4,"title":2},"52":{"body":51,"breadcrumbs":5,"title":3},"53":{"body":16,"breadcrumbs":4,"title":2},"54":{"body":27,"breadcrumbs":3,"title":2},"55":{"body":30,"breadcrumbs":4,"title":2},"56":{"body":92,"breadcrumbs":3,"title":1},"57":{"body":89,"breadcrumbs":3,"title":1},"58":{"body":16,"breadcrumbs":3,"title":1},"59":{"body":129,"breadcrumbs":4,"title":1},"6":{"body":15,"breadcrumbs":2,"title":1},"60":{"body":26,"breadcrumbs":7,"title":2},"61":{"body":117,"breadcrumbs":6,"title":1},"62":{"body":52,"breadcrumbs":12,"title":7},"63":{"body":34,"breadcrumbs":10,"title":5},"64":{"body":37,"breadcrumbs":10,"title":5},"65":{"body":286,"breadcrumbs":11,"title":6},"66":{"body":79,"breadcrumbs":12,"title":7},"67":{"body":129,"breadcrumbs":11,"title":6},"68":{"body":19,"breadcrumbs":11,"title":4},"69":{"body":173,"breadcrumbs":11,"title":4},"7":{"body":47,"breadcrumbs":3,"title":2},"70":{"body":248,"breadcrumbs":12,"title":5},"71":{"body":18,"breadcrumbs":8,"title":1},"72":{"body":64,"breadcrumbs":12,"title":5},"73":{"body":44,"breadcrumbs":11,"title":4},"74":{"body":33,"breadcrumbs":16,"title":9},"75":{"body":0,"breadcrumbs":5,"title":1},"76":{"body":87,"breadcrumbs":8,"title":4},"77":{"body":26,"breadcrumbs":7,"title":3},"78":{"body":13,"breadcrumbs":7,"title":3},"79":{"body":10,"breadcrumbs":5,"title":1},"8":{"body":98,"breadcrumbs":6,"title":5},"80":{"body":61,"breadcrumbs":7,"title":2},"81":{"body":24,"breadcrumbs":11,"title":6},"82":{"body":14,"breadcrumbs":9,"title":4},"83":{"body":54,"breadcrumbs":8,"title":3},"84":{"body":75,"breadcrumbs":9,"title":3},"85":{"body":118,"breadcrumbs":9,"title":3},"86":{"body":28,"breadcrumbs":11,"title":5},"87":{"body":44,"breadcrumbs":9,"title":3},"88":{"body":89,"breadcrumbs":9,"title":3},"89":{"body":98,"breadcrumbs":8,"title":3},"9":{"body":74,"breadcrumbs":2,"title":1},"90":{"body":93,"breadcrumbs":8,"title":3},"91":{"body":68,"breadcrumbs":8,"title":3},"92":{"body":54,"breadcrumbs":8,"title":3},"93":{"body":115,"breadcrumbs":9,"title":2},"94":{"body":182,"breadcrumbs":11,"title":4},"95":{"body":0,"breadcrumbs":7,"title":2},"96":{"body":73,"breadcrumbs":2,"title":1},"97":{"body":70,"breadcrumbs":4,"title":3},"98":{"body":45,"breadcrumbs":5,"title":4},"99":{"body":34,"breadcrumbs":2,"title":1}},"docs":{"0":{"body":"Ghaf Framework is an open-source project that provides information about our work and studies in the security technologies field in the context of embedded virtualization. The applied software research supports Secure Systems Research Center (SSRC) focus areas. Ghaf Framework can be used to build the Ghaf Platform that will provide an edge device software architecture with key features such as modularity and scalability through virtualization, support research and development of zero trust architecture (ZTA), and allow for low maintenance efforts while keeping the main code base stable and secure. The SSRC team focus is to research on enhancing ZTA to scale horizontally across edge HW platforms (phones, drones, laptops, communication modules) and vertically across SW platforms (Linux, Android, Browser, applications). The Ghaf Platform is a baseline software platform for edge devices, utilizing a virtualized architecture for research and product development aiming to achieve the following core objectives: apply the general security principles of zero trust within the software architecture, and act as an enabler for ZTAs within organizations. Ghaf Platform Infrastructure","breadcrumbs":"About Ghaf » About Ghaf","id":"0","title":"About Ghaf"},"1":{"body":"Virtualization is one of the core enablers to transform the traditionally monolithic software stack within edge devices into isolated components with minimal TCB and clearly defined functionality. The Ghaf Platform utilizes a collection of virtual machines (VMs) to define a system. Contrary to the traditional monolithic OS, this concept allows to define and run host services in isolated environments, which breaks up the monolithic structure and allows for a modular system definition that is customizable for a specific use case. To this end, various applications and guest OSs can be deployed while simultaneously utilizing the Platform's features.","breadcrumbs":"About Ghaf » Embedded Virtualization","id":"1","title":"Embedded Virtualization"},"10":{"body":"Feature Status Reference Device Details minimal host 🚧 all See Minimal Host and PR #140 . netvm ✅ Orin See netvm . Passthrough with Wifi works but requires SSID/password configuration idsvm ✅ Orin Defensive security VM placeholder PR open guivm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device, other devices have Wayland compositor running on the host. appvm 🚧 All, Lenovo X1 Implemented for Lenovo X1 reference device: chromium, GALA and zathura VMs. Requires guivm in place adminvm ✅ All Not started Inter VM comms - IP-based 🚧 All -debug-targets have network bridges to access VMs from host Inter VM comms - shared memory 🚧 All Inter VM Wayland 🚧 All Currently it is waypipe over SSH, for test and demo purpose only SW update 🚧 All A/B update tooling being evaluated USB passthrough 🚧 Orin No reference implementation integrated yet PCI passthrough ✅ All Used for reference in netvm on Orin UART passthrough 🚧 Orin See NVIDIA Jetson AGX Orin: UART Passthrough . Not integrated to any VM. ARM platform bus devices passthrough 🚧 Orin NVIDIA BPMP virtualization being developed","breadcrumbs":"Features » Target Architecture","id":"10","title":"Target Architecture"},"100":{"body":"Compartmentalization is the technique of separating parts of a system to decrease attack surface and prevent malfunctions from cascading in the system. In Ghaf architecture, there is a separate VM for every vital function of the system. Current implementation supports GUI VM, Networking VM and a couple of Application VMs, such as the Chromium web browser and the Zathura document viewer. The GUI VM owns a computer's GPU and performs desktop environment and application windows rendering. Wayland protocol for applications in this case is proxified by waypipe over SSH. This approach is used temporarily before moving to more sophisticated solutions. A VM compartmentalization requires all necessary devices passthrough in place. More specifically, you need to know the PCI VID and PID of a device and also its number on the PCI bus. In the case of a USB device passthrough, it is enough to know the device's VID and PID. For more information on actual implementation, see Ghaf as Library and Creating Application VM .","breadcrumbs":"Technologies » Compartmentalization » Compartmentalization","id":"100","title":"Compartmentalization"},"101":{"body":"Devices passthrough to virtual machines (VM) allows us to isolate the device drivers and their memory access in one or several VMs. This reduces the Trusted Code Base (TCB) in the host, due to the passed-through device drivers can be removed completely from the host kernel. Whether the device platform is x86 or ARM, the passthrough device needs to be bound to the VFIO device driver by the host system before it can be passed through to the guest environment. For more information, see Binding Device to VFIO Driver . Our current supported passthrough devices implementations: NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm","breadcrumbs":"Technologies » Passthrough » Devices Passthrough","id":"101","title":"Devices Passthrough"},"102":{"body":"An example of binding a PCI device to the VFIO driver manually: export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id Similar approach also works for platform devices. The device path for platform devices is /sys/bus/platform/devices/$DEVICE/. export DEVICE=\"31d0000.serial\"\necho vfio-platform > /sys/bus/platform/devices/$DEVICE/driver_override\necho \"$DEVICE\" > /sys/bus/platform/drivers/vfio-platform/bind","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Binding Devices to VFIO Driver to Allow Passthrough","id":"102","title":"Binding Devices to VFIO Driver to Allow Passthrough"},"103":{"body":"driverctl is an open-source device driver control utility for Linux systems. With driverctl it is easier to set up VFIO or change the driver for a device: export DEVICE=\"0001:01:00.0\"\ndriverctl --nosave set-override ${DEVICE} vfio-pci or for platform bus device passthrough export DEVICE=\"31d0000.serial\"\ndriverctl --nosave --bus platform set-override ${DEVICE} vfio-platform It is important to note that by default driverctl stores the set driver overrides and reactivates the override after a device reboot. With VFIO this can cause issues since some hardware devices may be required while the device starts up. This behavior can be effected by using the --nosave option as in the example above so that the override is reset back to default at reboot. The driverctl tool also features a way to list devices based on their bus type with the list-devices command. # Default usage of the tool is for pci bus\ndriverctl list-devices # Using command line option --bus platform sets the usage for platform bus\ndriverctl --bus platform list-devices driverctl can also reset the default driver by using the unset-override command. export DEVICE=\"0001:01:00.0\"\ndriverctl unset-override ${DEVICE}","breadcrumbs":"Technologies » Passthrough » Binding Device to VFIO Driver » Using driverctl Package","id":"103","title":"Using driverctl Package"},"104":{"body":"This document describes the UART passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to guide more complex devices passthrough implementations.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough","id":"104","title":"NVIDIA Jetson AGX Orin: UART Passthrough"},"105":{"body":"There are eight UART units in the System on Chip (SoC) and two Server Base System Architecture (SBSA) UART units: The SoC UART units are named with an alphabetical suffix: UARTA, UARTB, UARTC, UARTD, UARTE, UARTF, UARTG, UARTH (which may be referred to as UART1, UART2, UART3, UART4, UART5, UART6, UART7, and UART8). The SBRA UART units are named UARTI and UARTJ. These units are pin-muxed with the UARTE and UARTC respectively. The following table describes the UART units mapping and connections: Device tree def. CPU pin SoC pin Connected to uarta: serial@3100000 UART1 UART1 40 pin header 3v3 uartb: serial@3110000 UART2 UART5 M.2 key E (WiFi card) uartc: serial@c280000 UART3 UART3 USB Debug ttyACM0 uartd: serial@3130000 UART4 UART4 Camera connector uarte: serial@3140000 Not mapped uartf: serial@3150000 Not mapped uartg: not on dtb UART7 UART7 Optional, USB Debug ttyACM1 uarth: serial@3170000 Not mapped uarti: serial@31d0000 UART5 UART2 USB Debug ttyACM1 uartj: serial@c270000 Not mapped Notes: The first column shows how the UART units are defined in the UART device tree file tegra234-soc-uart.dtsi [1] . The second and third columns show the CPU and SoC pin connections. Note that for UART2 and UART5 these are swapped. The pin mapping configuration is described in the file tegra234-mb1-bct-pinmux-p3701-0000.dtsi [2] . This device tree file is automatically generated by the macro Excel file Jetson_AGX_Orin_Series_Pinmux_Config_Template_1.5.xlsm which is available at the official Jetson Download Center as the Jetson AGX Orin Series Pinmux . The last column describes where the UART units are connected to the exterior. Only two UART units are connected to the micro USB debug interface. The UART7 is not connected by default but it can be connected to the debug interface ttyACM1 by swapping the fuse resistors (see Debug MCU page 7 on P3737_A04_Concept_schematics.pdf [3] ).","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UART Connections","id":"105","title":"UART Connections"},"106":{"body":"The UARTI unit was selected to do the first \"Hello world\" passthrough implementation as it does not show any dependencies on its device tree: uarti: serial@31d0000 { compatible = \"arm,sbsa-uart\"; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; };","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » UARTI Selected for Passthrough","id":"106","title":"UARTI Selected for Passthrough"},"107":{"body":"To prepare the UARTI on the host for the passthrough: Modify the UARTI node in the tegra234-soc-uart.dtsi device tree file [1] : compatible: put a dummy driver associated to this node so that the kernel will not bind any driver to this UART unit. iommus: add the iommus field with the test stream ID TEGRA_SID_NISO1_SMMU_TEST which by default is not used by any other device. uarti: serial@31d0000 { compatible = \"arm,dummy\"; iommus = <&smmu_niso0 TEGRA_SID_NISO1_SMMU_TEST>; reg = <0x0 0x31d0000 0x0 0x10000>; interrupts = <0x0 TEGRA234_IRQ_UARTI 0x04>; current-speed = <115200>; status = \"disabled\"; }; Include the modifications, compile the kernel to update the output DTB, and then flash it to the internal eMMC device tree A and B partitions with the following command: dd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p3\ndd if=./arch/arm64/boot/dts/nvidia/tegra234-p3701-0000-p3737-0000.dtb of=/dev/mmcblk0p6","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Host Device Tree","id":"107","title":"Host Device Tree"},"108":{"body":"The guest device tree is based on the device tree extracted from QEMU VM. To get the base QEMU device tree, run the following command: qemu-system-aarch64 -machine virt,accel=kvm,dumpdtb=virt.dtb -cpu host Add the passthrough devices inside the platform node to this device tree: platform@c000000 { interrupt-parent = <0x8001>; ranges = <0xc000000 0x00 0xc000000 0x2000000>; #address-cells = <0x01>; #size-cells = <0x01>; compatible = \"qemu,platform\\0simple-bus\"; uarti: serial@c000000 { compatible = \"arm,sbsa-uart\"; current-speed = <0x1c200>; interrupts = <0x00 0x70 0x04>; reg = <0x0c000000 0x10000>; status = \"okay\"; }; }; In this example, the uarti node was added to the platform node. For this node the interrupt number was replaced to 0x70 and reg address to the one that was obtained from the QEMU monitor command: info mtree -f .","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Guest Device Tree","id":"108","title":"Guest Device Tree"},"109":{"body":"To start the guest VM: Bind the UARTI to the VFIO driver: echo vfio-platform > /sys/bus/platform/devices/31d0000.serial/driver_override\necho 31d0000.serial > /sys/bus/platform/drivers/vfio-platform/bind The VFIO gives the user-level an access to the devices, in this case, QEMU. Connect the NVIDIA Jetson AGX Orin Debug USB to your PC and open the serial port ttyACM1 at 115200 bps. You can use picocom with the next command: picocom -b 115200 /dev/ttyACM1 Run the guest VM with the following QEMU command: qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-platform,host=31d0000.serial\\ -dtb uart.dtb \\ -append \"rootwait root=/dev/vda1 console=ttyAMA0\" When the guest VM is launched you can see the VM Linux command line in the opened ttyACM1 terminal. kernel_src/hardware/nvidia/soc/t23x/kernel-dts/tegra234-soc/tegra234-soc-uart.dtsi bootloader/t186ref/BCT/tegra234-mb1-bct-pinmux-p3701-0000.dtsi available in the BSP sources on: https://developer.nvidia.com/embedded/jetson-linux-r3521 Jetson_AGX_Orin_DevKit_Carrier_Board_Design_Files_A04_20221003/P3737_A04_Concept_schematics.pdf available in https://developer.nvidia.com/jetson-agx-orin-developer-kit-carrier-board-design-files-a04","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: UART Passthrough » Starting Guest VM","id":"109","title":"Starting Guest VM"},"11":{"body":"Feature Status Reference Device Details Wayland-compositor 🚧 Orin, x86 Implemented for Lenovo X1 Chromium 🚧 Orin, x86 Implemented for Lenovo X1 Element 🚧 Orin, x86 On host Cloud Android (CVD) client application (GALA) 🚧 Orin, x86 Implemented for Lenovo X1 Virtualization control 🚧 All See vmd design .","breadcrumbs":"Features » Applications and VM Control","id":"11","title":"Applications and VM Control"},"110":{"body":"This document describes the PCIe passthrough implementations on the NVIDIA Jetson AGX Orin board. The goal of this document is to give an overview of passing through different PCIe devices and the limitations of PCIe in the board.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » NVIDIA Jetson AGX Orin: PCIe passthrough","id":"110","title":"NVIDIA Jetson AGX Orin: PCIe passthrough"},"111":{"body":"There are two (or actually three) PCIe slots in the Jetson AGX Orin board: One of the connectors is a full-size PCIe 8x slot located under a black plastic cover above the micro USB serial debug port on the side of the board. The other slot is a smaller M.2 slot that is located at the bottom of the board. By default, the slot is in use of the included Wi-Fi and Bluetooth module. The third slot is actually an NVMe slot which can be used to add an NVMe SSD to the board. For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. When using one of the slots: First and foremost, always turn off and disconnect any power sources from the board and its peripherals when connecting or disconnecting devices to any of the PCIe buses connect. When adding or removing devices to the board, there is always a risk of setting off an electrical discharge in one of the components which may damage the connected device or the board itself. Full-Size PCIe Slot The full-size PCIe connector is under the black plastic cover on one of the sides of the device. The cover is held in place with a fairly strong magnet. There is a small connector ribbon and a few delicate wires going from the board internals to a Wi-Fi antenna on the cover. TIP: Make sure to remove the cover carefully for not ripping the whole cover off along with the antenna cables. The PCIe slot is simular to one inside a desktop computer. One key difference: the Jetson AGX Orin board has limited 12V power output capabilities and can only output a maximum of 40W power to its PCIe slot. Regular desktop PCIe slot can output 75W at 12V so some more power-hungry PCIe cards [1] may not work with the Jetson AGX Orin board. There may also be a risk of damaging the board if a card tries to pull too much power from the PCIe socket. TIP: We recommend to check carefully the power requirements of a device before turning the device on. A good rule of thumb might be if the device has a cooler to actively cool it down then some care should be taken before starting to use the card. Some trials have been done with GPU devices that use at maximum 30-34W power. The devices seem to work well in Jetson AGX Orin, but it is difficult to say how much power the card actually pulls from the slot at any given time. No real performance or stress tests have been done but under usual GUI and simple 3d application usage the cards (NVIDIA Quadro P1000 and NVIDIA Quadro T600) seem to work fine. PCIe M.2 Slot The PCIe M.2 slot with key type A+E is at the bottom of the board. By default, this slot is in use of the internal Wi-Fi and Bluetooth card. There are different types of M.2 slots all of which are not compatible with one another. The slot in Jetson AGX Orin is type A+E, and it supports PCIe 2x and USB transport buses. PCIe M.2 NVMe for SSD The third slot is M.2 NVMe 2280 (22 mm width and 80 mm length) and can be used for NVMe SSD. Passing through this interface has not been tested as the SSD is in most cases used by the host.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » PCIe Slots in NVIDIA Jetson AGX Orin","id":"111","title":"PCIe Slots in NVIDIA Jetson AGX Orin"},"112":{"body":"As in the UART Passthrough , the default device tree requires some modifications. With the default configuration, the PCI devices are set to the same VFIO group as the PCI bus itself. The trouble here is that the PCI bus is a platform bus device which is a bit tricky to pass through to the guest. It is possible to pass through only the individual PCI devices and not the whole bus. To pass through individual PCI devices one by one, set the devices in their individual VFIO groups or remove the PCI bus from the same VFIO group: /* * Modify the 'pcie_c1_rp' pci-e bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the m2 pci device alone in the group. * This change is for the m2 pci-e \"wifi\" slot. */\n&pcie_c1_rp { /delete-property/ iommus;\n}; /* * Modify the 'pci_c5_rp' pci bus by removing its * iommu group definition. * This is to remove the pci bus from vfio group which * leaves the pci device alone in the group. * This change is for the full size pci-e slot. */\n&pcie_c5_rp { /delete-property/ iommus;\n};","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Enabling PCIe Devices for VFIO","id":"112","title":"Enabling PCIe Devices for VFIO"},"113":{"body":"To set up the device for VFIO, unload the device driver and then replac it with the vfio-pci driver. The example below can be used for a device in the PCI bus 0001. The device 0001:01:00.0 in the first bus is the Jetson AGX Orin board with the M.2 Wi-Fi card. The full size PCI bus id is 0005. It is possible that a single PCI card contains multiple devices. In that case, all the devices need to be passed through together as they are in the same VFIO group. Usually the graphics card also contains some sound output device as a separate device. export DEVICE=\"0001:01:00.0\"\nexport VENDOR_ID=$(cat /sys/bus/pci/devices/$DEVICE/vendor)\nexport DEVICE_ID=$(cat /sys/bus/pci/devices/$DEVICE/device) echo \"$DEVICE\" > /sys/bus/pci/devices/$DEVICE/driver/unbind echo \"$VENDOR_ID $DEVICE_ID\" > /sys/bus/pci/drivers/vfio-pci/new_id In case of success, this device is bound to VFIO. The VFIO nodes are usually owned by the root and in some cases may be group accessible by the VFIO group. To use the VFIO devices, the user who starts QEMU needs access to the VFIO device node: # List of vfio device nodes\nls /dev/vfio/ # List of devices within each iommu group\nls /sys/kernel/iommu_groups//devices/ You can also check the kernel logs to know which device belongs to which VFIO IOMMU group.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Binding Device for VFIO","id":"113","title":"Binding Device for VFIO"},"114":{"body":"After binding a device to VFIO, you can access the device in a VM. To do so, use a command line argument (as in the example) for the PCI device to pass through to QEMU. It does not matter which VFIO node ID was assigned to the device earlier, as long as all the devices with the same VFIO node are passed through, and none of the devices in the same group is left behind. The QEMU command line argument for passthrough uses the PCIe device ID as identifier for the devices. Each device which is passed through needs its own QEMU -device argument as below: -device vfio-pci,host=\"0001:01:00.0\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » Starting Guest VM","id":"114","title":"Starting Guest VM"},"115":{"body":"Modern PCI devices use the Message Signaled Interrupts (MSI) method to limit the need for physical hardware interrupt pins. As passing through PCI or any other devices is fairly new to QEMU, it seems MSI in ARM64 is not supported by QEMU [2] . To get interrupts to work in the guest, we need to signal the kernel to disable MSI for our passthrough device. There are two ways of doing it: To modify the host device tree by disabling MSI completely from the whole PCI bus. To disable MSI only from the guest by using the pci=nomsi kernel argument with QEMU. Disabling MSI is not required for the x86 QEMU guest as it has MSI support. The command below is provided only as a test example for passing through a PCI device for AArch64 [3] : qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1024 \\ -no-reboot \\ -kernel Image \\ -drive file=focal-server-cloudimg-arm64.raw,if=virtio,format=raw \\ -device vfio-pci,host=0001:01:00.0\\ -append \"rootwait root=/dev/vda1 console=ttyAMA0 pci=nomsi\"","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » ARM64 PCI Device Interrupts","id":"115","title":"ARM64 PCI Device Interrupts"},"116":{"body":"The information above is enough for x86 and also for ARM64 processor architecture when using some simple or a bit older PCIe devices. A bit more complex PCIe device which has a larger internal RAM pool needs some modifications with QEMU sources. The problem with passing through such devices is that the memory address range reserved for PCIe devices is not large enough to map the internal memory of the PCI device. Some graphics cards have several gigabytes of internal RAM which needs to be accessible for the VM guest. You can extend the VIRT_PCIE_ECAM memory address range in the QEMU source code to allow mapping the whole PCIe device memory range. In most cases a few gigabytes is sufficient: diff --git a/hw/arm/virt.c b/hw/arm/virt.c\nindex ac626b3bef..d6fb597aee 100644\n--- a/hw/arm/virt.c\n+++ b/hw/arm/virt.c\n@@ -161,9 +161,10 @@ static const MemMapEntry base_memmap[] = { [VIRT_SECURE_MEM] = { 0x0e000000, 0x01000000 }, [VIRT_PCIE_MMIO] = { 0x10000000, 0x2eff0000 }, [VIRT_PCIE_PIO] = { 0x3eff0000, 0x00010000 },\n- [VIRT_PCIE_ECAM] = { 0x3f000000, 0x01000000 },\n+ /* ..Reserved 11Gb range for pcie = 11*1024*1024*1024b */\n+ [VIRT_PCIE_ECAM] = { 0x40000000, 0x2C0000000 }, /* Actual RAM size depends on initial RAM and device memory settings */\n- [VIRT_MEM] = { GiB, LEGACY_RAMLIMIT_BYTES },\n+ [VIRT_MEM] = { 0x300000000, LEGACY_RAMLIMIT_BYTES }, }; After these changes, compile QEMU and install it on the host system. An example of a power-hungry card is a graphics accelerator card. Our approach of using ARM as a VM host with passthroughs fairly new so it is hard to search for help or references online, but this bug qemu-system-aarch64 error seems to be close enough. The main hint of MSI not being fully supported yet by QEMU on ARM64 comes from the case when the device starts working only with MSI disabled from the guest kernel argument. It may require some changes for real usage.","breadcrumbs":"Technologies » Passthrough » NVIDIA Jetson AGX Orin: PCIe Passthrough » More Work for ARM64","id":"116","title":"More Work for ARM64"},"117":{"body":"","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » x86 PCIe Device Passthrough with crosvm","id":"117","title":"x86 PCIe Device Passthrough with crosvm"},"118":{"body":"As with other passthroughs, first, we need to set the target device to use VFIO driver. This can be done manually or by using the driverctl tool as below. Running driverctl requires root permissions. export BUS=\"0000:01:00.0\"\ndriverctl --nosave set-override ${BUS} vfio-pci Let's consider the example of starting crosvm. In some cases, crosvm may need privileged permissions to work properly. This applies specially for passthrough hardware devices as vfio devices are generally owned by the root user or the vfio group. For simplicity, it may be easier to run crosvm as the root user but it is be possible to set up correct permissions so that running as root is not needed. Crosvm expects the device's system path as its --vfio argument. The device identifier is different when comparing how passthrough devices are refrenced in QEMU. Using the guest-address option is not strictly required by the source documentation but it gives a bit more control for handling the passthrough device on the guest side. export BUS=\"0000:01:00.0\"\nexport GUESTBUS=\"00:08.0\"\n./target/debug/crosvm run \\ --mem=8192 \\ --block ./ubuntu-22.10.img \\ -i /boot/initrd.img-5.19.0-31-generic /boot/vmlinuz-5.19.0-31-generic \\ -p \"root=/dev/vda2 loglevel=8 earlycon earlyprintk debug\" \\ --vfio /sys/bus/pci/devices/${BUS},guest-address=${GUESTBUS},iommu=viommu","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Enabling PCIe Devices for VFIO with driverctl","id":"118","title":"Enabling PCIe Devices for VFIO with driverctl"},"119":{"body":"The driverctl tool can reset the original device driver afterward: export BUS=\"0000:01:00.0\"\ndriverctl unset-override ${BUS}","breadcrumbs":"Technologies » Passthrough » Generic x86: PCIe Passthrough on crosvm » Reseting Driver to Original State Afterwards","id":"119","title":"Reseting Driver to Original State Afterwards"},"12":{"body":"See discussion for the outline of next steps Outline of next phases","breadcrumbs":"Features » Next Steps","id":"12","title":"Next Steps"},"120":{"body":"Boot and Power Management Processor (BPMP) is the NVIDIA processor, which is designed for booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. The BPMP virtualization on the NVIDIA Jetson AGX Orin involves enabling VMs to access specific BPMP resources. This capability is crucial for passing through platform devices where control over resets and clocks configurations is required.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization","id":"120","title":"NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization"},"121":{"body":"Resource Access : The BPMP virtualization allows VMs to access and manage resources such as device clocks and resets. Foundation for Device Virtualization : This setup lays the groundwork for future virtualization of more complex devices like GPUs. Module Introduction : A new virtualization module is introduced, divided into common and host modules with a plan to add a guest module for NixOS-based guests. Device Tree Configurations : Modifications are made with patching to support virtualization features. Compatibility : The current implementation supports a Ghaf host with an Ubuntu guest.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Architectural Overview","id":"121","title":"Architectural Overview"},"122":{"body":"The current implementation includes a host configuration for the UARTA passthrough as a test case demonstrating the practical application of the BPMP virtualization. At the same time, the current implementation still requires manually built Ubuntu guest. Work continues to integrate microvm.nix declared guest that supports NVIDIA BPMP virtualization with the UARTA passthrough demo. This work is generally important for future NVIDIA Jetson platform bus GPU passthrough. With this feature it is possible to virtualize the NVIDIA-Jetson-integrated GPU connected to the platform bus.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Use Cases","id":"122","title":"Use Cases"},"123":{"body":"Enable NVIDIA BPMP virtualization on a Ghaf host for an NVIDIA Jetson-target using the following configuration options: hardware.nvidia = { virtualization.enable = true; passthroughs.uarta.enable = true;\n}; IMPORTANT: These options are integrated to NVIDIA Jetson Orin targets but disabled by default until the implementation is finished. Build the target and boot the image. You can write the image to an SSD for testing with a recent NVIDIA UEFI FW.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin","id":"123","title":"Using BPMP Virtualization Options on NVIDIA Jetson AGX Orin"},"124":{"body":"","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Testing","id":"124","title":"Testing"},"125":{"body":"Check the bpmp-host device: [ghaf@ghaf-host:~]$ ls /dev | grep bpmp-host\nbpmp-host Check that vfio-platform binding is successful: ghaf@ghaf-host:~]$ ls -l /sys/bus/platform/drivers/vfio-platform/3100000.serial\nlrwxrwxrwx 1 root root 0 Dec 8 08:26 /sys/bus/platform/drivers/vfio-platform/3100000.serial -> ../../../../devices/platform/3100000.serial","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Host Testing","id":"125","title":"Host Testing"},"126":{"body":"UARTA is an UART unit with a port A connection. For more information, see UART Connections . Build a guest kernel according to UARTA passthrough instructions [1] and use the following script to start the VM: TIP: IMG is the kernel image and FS the rootfs. IMG=$1\nFS=$2 qemu-system-aarch64 \\ -nographic \\ -machine virt,accel=kvm \\ -cpu host \\ -m 1G \\ -no-reboot \\ -kernel $IMG \\ -drive file=$FS,if=virtio,format=qcow2 \\ -net user,hostfwd=tcp::2222-:22 -net nic \\ -device vfio-platform,host=3100000.serial \\ -dtb virt.dtb \\ -append \"rootwait root=/dev/vda console=ttyAMA0\" With UARTA connected start Minicom on the working machine: minicom -b 9600 -D /dev/ttyUSB0 Test UARTA by echoing a string to the correct tty in the VM: echo 123 > /dev/ttyTHS0","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Guest for UARTA Testing","id":"126","title":"Guest for UARTA Testing"},"127":{"body":"NVIDIA Jetson AGX Orin: UART Passthrough [1] That documentation is in the bpmp-virt side repository, as that approach does not use microvm.","breadcrumbs":"Technologies » Platform Bus Virtualization: NVIDIA BPMP » Related Topics","id":"127","title":"Related Topics"},"128":{"body":"microvm is the component defining a VM's launch services generated for systemd. It inputs a set of options mapped to the hypervisor command line call. Nevertheless, it may happen that some hypervisor options are not supported by microvm. For example, adding specific devices. This document considers such cases.","breadcrumbs":"Technologies » Hypervisor Options » Ghaf-Specific microvm Hypervisor Options","id":"128","title":"Ghaf-Specific microvm Hypervisor Options"},"129":{"body":"A VM is defined under Ghaf’s subdirectory microvmConfigurations/VM_NAME/default.nix, for example: modules/virtualization/microvm/netvm.nix\nhttps://github.com/tiiuae/ghaf/blob/main/modules/virtualization/microvm/netvm.nix This file contains hypervisor’s options for running the VM. For each hypervisor there is a bunch of microvm’s defined options: https://astro.github.io/microvm.nix/options.html The way they are processed can be found in corresponding .nix files (runners) in the astro/microvm.nix repository: crosvm.nix qemu.nix The formula for setting hypervisor option is microvm.option = value;. For example: microvm.mem = 512;\nmicrovm.vcpu = 2;","breadcrumbs":"Technologies » Hypervisor Options » Options Definitions","id":"129","title":"Options Definitions"},"13":{"body":"The main architectural concept of the Ghaf Platform is to break up the traditional monolithic structure to modularized components, virtual machines (VM). These VMs on hardened host OS implement the Ghaf edge virtualization platform. Embedded virtualization builds on cloud technologies in the development of end-to-end security. With hardware support for virtualization, we provide a hardened system of a small trusted computing base (TCB)—thin host—that enables isolation of use cases and their resources. Use cases are protected in guest virtual machines (VMs). Embedded targets are small devices (personal or headless) instead of high-performance cloud servers. Our scope is illustrated in the following diagram. For more information, see stack . Scope! If you are interested in why we do something this way instead of that way, see Architecture Decision Records . The Ghaf Platform components are used in reference configurations to build images for reference devices. For more information, see Reference Implementations .","breadcrumbs":"Architecture » Architecture","id":"13","title":"Architecture"},"130":{"body":"As a result of building the Ghaf tree, command lines for starting the VMs are generated. They reflect all parameters specified above—both those specified explicitly and defaults. They are located under the Ghaf’s /var/lib/microvms/ directory. ls /var/lib/microvms/memsharevm-vm-debug/current/bin microvm-balloon\nmicrovm-console\nmicrovm-run\nmicrovm-shutdown The command which starts the hypervisor is the microvm-run bash script. Here is a sample generated: #! /nix/store/96ky1zdkpq871h2dlk198fz0zvklr1dr-bash-5.1-p16/bin/bash -e\nexec '/nix/store/zsf59dn5sak8pbq4l3g5kqp7adyv3fph-qemu-host-cpu-only-7.1.0/bin/qemu-system-x86_64' '-\nname' 'memshare' '-M' 'microvm,accel=kvm:tcg,x-option-roms=off,isa-serial=off,pit=off,pic=off,rtc=off,\nmem-merge=on' '-m' '2512' '-cpu' 'host' '-smp' '17' '-machine' 'virt,accel=kvm' '-nodefaults' '-no-\nuser-config' '-nographic' '-no-reboot' '-serial' 'null' '-device' 'virtio-serial-device' '-chardev'\n'pty,id=con0' '-device' 'virtconsole,chardev=con0' '-chardev' 'stdio,mux=on,id=con1,signal=off' '-\ndevice' 'virtconsole,chardev=con1' '-device' 'virtio-rng-device' '-drive' 'id=root,format=raw,\nmedia=cdrom,file=/nix/store/xnnqb3sb1l4kbx7s0ijazph5r0c0xhx5-rootfs.squashfs,if=none,aio=io_uring' '-\ndevice' 'virtio-blk-device,drive=root' '-kernel' '/nix/store/ds5cmyby0p4ikw91afmrzihkz351kls7-linux-\n6.2/bzImage' '-append' 'console=hvc1 console=hvc0 reboot=t panic=-1 root=/dev/vda ro init=/init\ndevtmpfs.mount=0 stage2init=/nix/store/0mbhpna8hplbsaz1il3n99f0zincr4vs-nixos-system-memshare-\n22.11.20230310.824f886/init boot.panic_on_fail loglevel=4 regInfo=/nix/store\n/j8id92qsd58qjnzq4xz6v5l38rlpq6is-closure-info/registration' '-sandbox' 'on' '-qmp' 'unix:memshare.\nsock,server,nowait' '-device' 'virtio-balloon' '--option 1 --option 2' for the input parameters: microvm.hypervisor = \"qemu\"; Note that microvm sets several others. microvm.mem = 2000;\nmicrovm.balloonMem = 512;\nmicrovm.vcpu = 17;\nmicrovm.qemu.extraArgs = [ \"--option 1 --option 2\" ];","breadcrumbs":"Technologies » Hypervisor Options » Generated Hypervisor Start Commands","id":"130","title":"Generated Hypervisor Start Commands"},"131":{"body":"microvm may not supply parameters for all possible options as adding specific devices. Processing of all microvm configuration options is done in the mentioned above hypervisor’s runner .nix file. The runners support the extraArgs parameter. It allows setting any option in QEMU command line invocation. Its value is a list of strings. In this example the following extraArgs definition: microvm.qemu.extraArgs = [\n\"-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img\"\n\"-device virtio-pmem-pci,memdev=mem1,id=nv1\"\n]; results in the generated command line parameters: '-object memory-backend-file,id=mem1,mem-path=/dev/shm/virtio_pmem.img' '-device v\nirtio-pmem-pci,memdev=mem1,id=nv1' Support for the crosvm’s extraArgs parameter was added on April 7, 2023. Make sure to verify that your flakes.lock file refers to the proper version.","breadcrumbs":"Technologies » Hypervisor Options » Adding Option to Hypervisor Command Line","id":"131","title":"Adding Option to Hypervisor Command Line"},"132":{"body":"Ghaf Framework uses a CI/CD (Continuous Integration and Continuous Delivery) approach that aims to automate the process of building, testing, and deploying software. Our goal is to have the ability to deploy code quickly and safely: once a build is deployed, the next build undergoes testing, while the latest build is being coded. Currently, Continuous Deployment is not set up.","breadcrumbs":"Continuous Integration and Distribution » Continuous Integration and Distribution","id":"132","title":"Continuous Integration and Distribution"},"133":{"body":"CI/CD Architecture The software delivery pipeline consists of several stages: Contributors make changes in the code and create a pull/merge request to merge changes from one personal fork or branch into the upstream repository/branch. Builder Controller checks source code repositories for changes and fetches them. Builder Controller arranges builds on Remote Builders to make disk images and other release artifacts. After the building is done, Remote Builder sends disk images to Builder Controller to create provenance files and sign disk images and provenance files. On build failure, Builder Controller sends failure notifications to Message Service. Builder Controller uploads all build artifacts to Binary Cache and disk images to Web Server. Test Automation fetches disk images from Binary Cache and runs the hardware test on them. Test Automation uploads test reports to Web Server. Users can download images from Web Server: release images https://vedenemo.dev/files/releases/ images for testing https://vedenemo.dev/files/build_reports/ .","breadcrumbs":"Continuous Integration and Distribution » General Process","id":"133","title":"General Process"},"134":{"body":"To be aware of what is exactly in our software supply chain, it is reviewed for security issues and known vulnerabilities. Supply Chain Attacks Diagram We implement a supply chain security (SCS) — process of securing the machinery of the development, building, and release environment. That means that every component that a software artifact might be touching on its way from the developer to the consumer will be secured. The software artifact should be encrypted on each possible transition phase and its integrity should be verified at each destination. Each build should be accompanied by means of software bill of materials (SBOM) , identifying all the components that the software package consists of. SBOM containing reference to each dependency, its source and version together with provenance, containing build information are collected at the build time, signed, and used for vulnerability analysis during the next steps. The software artifact, SBOM, and provenance are signed by the build machinery at the build time, and the signature is verifiable at every destination of the package. The certificates that are used for signing and verification are provided by the public key infrastructure (PKI) system and are signed by the same root certificate authority (CA) . That allows you to confirm the author of the signature (build machinery) and guarantees that the package has not been tampered with since the build time.","breadcrumbs":"Supply Chain Security » Supply Chain Security","id":"134","title":"Supply Chain Security"},"135":{"body":"SLSA Framework Basic Security Measures SBOM Public Key Infrastructure Security Fix Automation","breadcrumbs":"Supply Chain Security » In This Chapter","id":"135","title":"In This Chapter"},"136":{"body":"Supply chain Levels for Software Artifacts (SLSA) is a security framework for tampering prevention, integrity improvement, and securing packages and infrastructure of a project. For more information about the SLSA framework, see the offical website https://slsa.dev .","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Framework","id":"136","title":"SLSA Framework"},"137":{"body":"Immutable reference: An identifier, guaranteed to always point to the same, immutable artifact. Provenance: Metadata about how an artifact was produced. Revision: An immutable, coherent state of a source.","breadcrumbs":"Supply Chain Security » SLSA Framework » SLSA Terminology","id":"137","title":"SLSA Terminology"},"138":{"body":"One of the requirements for the solution is to reach SLSA Level 4 and even go beyond that. This requires a lot of process changes as well as technical work. The SLSA model consists of 4 levels, offering an incremental level of anti-tampering protection. Levels 1-3 represent milestones with certain integrity guarantees, whereas level 4 is an ideal end state. Level 0 means no SLSA compliance and no guarantees are given. Level 1 demands a fully scripted / automated build process and provenance generation. It offers basic confidence in the origin of the software but doesn’t provide any tamper resistance. Level 2 Introduces authenticated provenance generated by a hosted build at the same time demanding version control system usage. Provenance prevents tampering and offers trust in the build service. Level 3 offers auditability of the source and the integrity of the provenance. Much stronger tampering protection is provided by preventing specific classes of threats such as cross-build contamination. Level 4 requires two-peer source code review and a hermetic, reproducible build process. Overall Level 4 offers a high degree of confidence in the anti-tampering protection of the software. SLSA level is not transitive, thus level of the artifact is not dependent on the level of dependencies, which are expected to have their own SLSA levels. This makes it possible to build a Level 4 artifact from Level 0 dependencies.","breadcrumbs":"Supply Chain Security » SLSA Framework » Levels of Assurance","id":"138","title":"Levels of Assurance"},"139":{"body":"Requirements Level 1 Level 2 Level 3 Level 4 Source — Version controlled ✓ ✓ ✓ Source — Verified history ✓ ✓ Source — Retained indefinitely ✓ ✓ Source — Two-person reviewed ✓ Build — Scripted build ✓ ✓ ✓ ✓ Build — Build service ✓ ✓ ✓ Build — Build as code ✓ ✓ Build — Ephemeral environment ✓ ✓ Build — Isolated ✓ ✓ Build — Parameterless ✓ Build — Hermetic ✓ Build — Reproducible ○ Provenance — Available ✓ ✓ ✓ ✓ Provenance — Authenticated ✓ ✓ ✓ Provenance — Service generated ✓ ✓ ✓ Provenance — Non-falsifiable ✓ ✓ Provenance — Dependencies complete ✓ Common — Security ✓ Common — Access ✓ Common — Superusers ✓ ✓ — required ○ — required unless justified otherwise empty cell — not required","breadcrumbs":"Supply Chain Security » SLSA Framework » Requirements","id":"139","title":"Requirements"},"14":{"body":"Architectural Variants Architecture Decision Records Minimal Host Networking VM Platform Bus for Rust VMM Stack","breadcrumbs":"Architecture » In This Chapter","id":"14","title":"In This Chapter"},"140":{"body":"","breadcrumbs":"Supply Chain Security » Basic Security Measures » Basic Security Measures","id":"140","title":"Basic Security Measures"},"141":{"body":"The source code security is based on the fact that the source code is two-person reviewed, version controlled, and the history is verified and retained indefinitely.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Source Code / Version Control Security","id":"141","title":"Source Code / Version Control Security"},"142":{"body":"All the commits to repositories must be GPG-signed. This can be achieved by enabling GPG commit signatures in the config: git config --global commit.gpgsign true For more detailed information, see the Signing commits article of the GitHub Docs.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Commit Signing","id":"142","title":"Commit Signing"},"143":{"body":"In the case of GitHub the following settings should be considered: Require pull request reviews before merging (req: two-person reviewed source). Require status checks before merging. Require conversation resolution before merging. Require signed commits. Deletions should be forbidden (req: immutable history).","breadcrumbs":"Supply Chain Security » Basic Security Measures » Branch Protection","id":"143","title":"Branch Protection"},"144":{"body":"Software signing is an important measure to validate the author and ensure that the code has not been altered on the way from the developer to the customer. Nix tooling is offering means to sign the derivations using libsodium with EdDSA, however, as the modular system is assumed, scripts need to be developed to support signing mechanisms in an absence of Nix tooling. By default, the software image is signed only at the binary cache per request. Which leaves the path from Hydra to the binary cache unsecured. The problem can be resolved in two ways: Enabling the image signing on Hydra Shared Nix Store","breadcrumbs":"Supply Chain Security » Basic Security Measures » Software Signing","id":"144","title":"Software Signing"},"145":{"body":"Enabling the image signing on Hydra requires some extra work due to the lack of well-documented support of image signing at Hydra at the time of writing this document. As already mentioned, NixOS is using libsodium-based EdDSA solution for image signing. So similar scripts can be implemented. For example, in Python by using existing libsodium bindings, such as PyNaCl. Enabling Image Signing on Hydra","breadcrumbs":"Supply Chain Security » Basic Security Measures » Enabling Image Signing on Hydra","id":"145","title":"Enabling Image Signing on Hydra"},"146":{"body":"The shared NixStore option is rather straightforward if Hydra is combined with the binary cache. This kind of setup is lacking the extra transition path. Thus the packages signed by the binary cache will be served straight from the Hydra NixStore. Shared NixStore Solution","breadcrumbs":"Supply Chain Security » Basic Security Measures » Shared Nix Store","id":"146","title":"Shared Nix Store"},"147":{"body":"All the data should be transported over secure encrypted channels. Since all the transportation is done over TCP/IP protocol stack, it is possible to use native solutions like TLS to secure the traffic between the nodes. Version 1.2 is a minimum requirement.","breadcrumbs":"Supply Chain Security » Basic Security Measures » Data Encryption in Transit","id":"147","title":"Data Encryption in Transit"},"148":{"body":"Software bill of materials (SBOM) is a formal, machine-readable document that provides a list of software components that make up the target software and all its dependencies.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » Software Bill of Materials (SBOM)","id":"148","title":"Software Bill of Materials (SBOM)"},"149":{"body":"There are three main delivery formats and specifications for SBOM: CycloneDX, SPDX, and SWID. CycloneDX is an open-source standard with origins in the OWASP community. The specification's original focus is on security. There's a large growing community and open source tooling that support CycloneDX format. SPDX is also a product of an open-source community, with the original focus on licensing. SPDX is run and maintained by Linux Foundation . Similarly to CycloneDX, many open-source tools support the SPDX format. SWID is a standard that originates from NIST . SWID tags aim to help organizations create accurate software inventories. While SWID can serve as an SBOM too, it is not as widely used SBOM format in open source as the two other specifications.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Formats and Specifications","id":"149","title":"SBOM Formats and Specifications"},"15":{"body":"The main scope of the Ghaf platform is edge virtualization. However, to support modular development and testing of the platform, variants are supported with the following definitions: Default A default variant. Supports minimal host , GUI VM [1] and netvm . May host other VMs. For more information, see Stack . Headless A variant with minimal host and netvm . May host other VMs but does not have GUI VM or graphics stack on a host. Host only A variant with minimal host only . A user can manually install software to a host, including VMs (if supported by hardware). No virtualization A variant for hardware with no support for virtualization. May run any software, similar to popular Linux distributions, but cannot support guest virtual machines. May host any software deployed directly on a host. Variant Name Headless Graphics VMs Devices Default No GUI VM [1] Supported Jetson, generic x86 Headless Yes No Supported Jetson, generic x86 Host Only Yes No May be supported but not included Jetson, generic x86 No Virtualization Yes or no Native on host Not supported Raspberry Pi, RISC-V [1] As of early 2023, the graphics stack is deployed on a host to support application development. Work is ongoing to define the GUI VM and isolate graphics with GPU passthrough.","breadcrumbs":"Architecture » Architectural Variants » Architectural Variants","id":"15","title":"Architectural Variants"},"150":{"body":"Ghaf framework will use SBOMs for: Vulnerability identification: automatic correlation of SBOM against known vulnerabilities. Vulnerability remediation: automatic process to suggest fixes for identified vulnerabilities. Dependency analysis: categorization of open-source and closed source software dependencies. Dependency analysis: creation of a directed acyclic graph License compliance: know and comply with the license obligations. Market signal: publish SBOM together with other release artifacts.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Usage in Ghaf","id":"150","title":"SBOM Usage in Ghaf"},"151":{"body":"Ghaf is based on Nix, therefore, the selected SBOM tooling needs to support creating SBOMs for nix artifacts. As part of the Ghaf project, we have created the sbomnix tool to support SBOM generation for Ghaf and, more generally, for any Nix-based targets. For more details on the SBOM tooling in Ghaf, see sbomnix and nixgraph . sbomnix supports CycloneDX as well as SPDX SBOM specification.","breadcrumbs":"Supply Chain Security » Software Bill of Materials » SBOM Tooling in Ghaf","id":"151","title":"SBOM Tooling in Ghaf"},"152":{"body":"https://ntia.gov/page/software-bill-materials https://slsa.dev/blog/2022/05/slsa-sbom https://fossa.com/blog/software-bill-of-materials-formats-use-cases-tools https://www.legitsecurity.com/blog/what-is-an-sbom-sbom-explained-in-5-minutes","breadcrumbs":"Supply Chain Security » Software Bill of Materials » References","id":"152","title":"References"},"153":{"body":"In the SCS context, a public key infrastructure (PKI) term refers to a system for the creation, storage, and distribution of digital certificates which are used to verify that a particular key belongs to a certain entity. PKI creates and manages a hierarchical set of digital certificates which map public keys to certain entities. Storage and revocation methodologies are to be defined. The PKI of SCS should consist of: Certificate authority (CA) for storing, issuing, and signing the digital certificates. Registration authority (RA) for requesting entity identity verification. Central directory for the secure storage of the keys. Certificate Management System (CMS) for managing access to stored certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Public Key Infrastructure","id":"153","title":"Public Key Infrastructure"},"154":{"body":"PCA enables the creation of private certificate authority hierarchies, consisting of Root and Subordinate CAs. It issues end-entity X.509 certificates, that are used for: Encrypted TLS communication channels (data encryption in transit) Code and image signing PCA can be established in the cloud or on-premises. Initially, the OpenSSL-based solution deployed on-premises is assumed, however, some of the target projects might consider using commercial cloud solutions.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Private Certificate Authority (PCA)","id":"154","title":"Private Certificate Authority (PCA)"},"155":{"body":"On-premises solution can be further improved by adding a Hardware Security Module (HSM). It is a physical device for managing cryptographic material such as digital keys. HSM can be also used to perform cryptographic operations such as digital signing, encryption, and decryption. The HSM contains one or more Secure Cryptoprocessors that are dedicated microprocessors optimized for carrying out cryptographic operations. One example of affordable HSM solutions is YubiHSM developed by Yubico.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Hardware Security Module","id":"155","title":"Hardware Security Module"},"156":{"body":"The following HSM solutions are considered for the Ghaf project: YubiHSM2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM The following table provides feature comparison of the proposed solutions: Since the feature list is quite extensive, the table is limited to the features that are either planned to be used in Ghaf or might benefit the project in the future. Feature YubiHSM 2 NitrokeyHSM2 SoftHSMv2 BreadboardHSM Secure key storage ✓ ✓ ✓ ✓ ECC ✓ ✓ ✓ ✓ EdDSA (ed25519) ✓ ? ECDSA ✓ ✓ ✓ ✓ RSA ✓ ✓ ✓ PKCS#11 interface ✓ ✓ ✓ ✓ Network shareable ✓ ✓ M of N wrap rule ✓ ✓ Tamper evident audit logging ✓ Storage capacity 128KB, 255xAny ECC 76KB, 35xECC-512 9.7Kb, 16 slots Price 650EUR (VAT 0%) 99 EUR FOSS HW Costs YubiHSM2 is the leading solution considering its cryptographic capabilities. However, taking into account quite modest needs of SCS, NitrokeyHSM2 represents an adequate option. The main benefit of YubiHSM2 from SCS perspective is its native support of EdDSA-curve25519, which is the one that NixOS is using for package signing. Thus YubiHSM2 could be used directly with NixOS. However, as the package doesn't change in transit from the Build System to the Consumer, usage of inbuilt tooling is not always necessary. BreadboardHSM solution is based on Microchip ATECC608B (TrustFLEX + cryptoauthlib + gtutls), though development work is still ongoing at the time of writing this document. The SoftHSMv2 and BreadboardHSM are taken for comparison showing what can be achieved using FOSS variants.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » HSM Variants for Consideration","id":"156","title":"HSM Variants for Consideration"},"157":{"body":"CA usually consists of: Root CA - the root of trust of the entire PKI, for issuing and signing the certificates used by other CAs. Subordinate CA for issuing end-entity certificates. There are three types of hierarchies: one-tier, two-tier, and three-tier. The hierarchy can be chosen based on the target project's needs and complexity. A one-tier hierarchy is not considered for any production usage due to the low security, as the compromise of a single CA leads to a compromise of the entire PKI. In a two-tier hierarchy, the Root CA and issuing (Subordinate) CAs are separated for increasing the security level. This is the simplest production level hierarchy allowing to keep Root CA at the most secure and restrictive levels, yet making subordinate CA access slightly more permissive. This hierarchy is most likely sufficient for most of the target projects. In a three-tier CA, an intermediate CA is placed between the Root CA and the Subordinate (issuing) CA. This is done to separate the Root CA from low-level CA operations. The middle layer (intermediate CA) is only used to sign Subordinate CAs that issue the end-entity certificates.","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » CA Hierarchy Options","id":"157","title":"CA Hierarchy Options"},"158":{"body":"The following diagram describes the proposed CA for the SCS. The three-tier CA is chosen based on the high-security level and the potential need to scale it to several projects, later on, keeping the main control under the same Root CA. Proposed CA","breadcrumbs":"Supply Chain Security » Public Key Infrastructure » Proposed CA Hierarchy","id":"158","title":"Proposed CA Hierarchy"},"159":{"body":"The Nix community is able to identify and fix security issues relatively quickly. At the same time, the community process to ensure critical security fixes are included in nixpkgs is unclear or unspecified. Indeed, Ghaf should not solely rely on the community to provide security fixes but take action to understand the vulnerabilities that impact Ghaf and take an active role in fixing such issues.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Security Fix Automation","id":"159","title":"Security Fix Automation"},"16":{"body":"Architecturally significant decisions are recorded as architecture decision records (ADR) . The Ghaf platform decision log: Decision Record Status Minimal Host Proposed. netvm—Networking Virtual Machine Proposed, partially implemented for development and testing. Platform Bus for RustVMM Proposed, WIP. To create an architectural decision proposal, open a pull request and use the decision record template . Contributions to the Ghaf architecture decisions are welcome.","breadcrumbs":"Architecture » Architecture Decision Records » Architecture Decision Records","id":"16","title":"Architecture Decision Records"},"160":{"body":"The following image captures the high-level process we propose to identify and remediate the security vulnerabilities that impact Ghaf: Security Fix Automation The process consists of two parts - automated and manual : Automated vulnerability analysis is a scripted job triggered on a daily basis in Ghaf CI/CD. It consists of the following actions: (1) Locally (temporarily) update the Ghaf flake lock file. Temporary lock file update is needed so the Ghaf dependencies are up-to-date with the nixpkgs input Ghaf is pinned to. Otherwise, the automated analysis results would also include vulnerabilities that have been fixed in nixpkgs upstream since the last Ghaf flake lock update. (2) Run automated vulnerability analysis tooling for each relevant Ghaf build target. For Ghaf, being Nix-based, we propose to use nix_secupdates for automated vulnerability analysis. As a result of this step, the tooling generates an auto-triaged vulnerability report, which will be the main input for the manual analysis. Manual vulnerability analysis is a manual process, which is also executed on daily basis. (3) Using the auto-triaged vulnerability report from the previous step, manually analyze the automation results comparing the new results to earlier day's results from the relevant build. (4) If there are any fixed issues compared to the last analyzed report, initiate the Ghaf flake lock file update for relevant inputs to include the vulnerability fixes from the nixpkgs upstream to relevant Ghaf branches. (5) If there are any new vulnerabilities compared to the last analyzed report, manually analyze each vulnerability in detail. If the issue requires a fix, create a pull request to push the changes to relevant nixpkgs branches. The process described above is an upstream-first, with the main benefit of eliminating the need to maintain our own vulnerability fix patches on top of nixpgks in Ghaf. This process will also benefit the nixpkgs community, contributing to the overall security improvement for the packages Ghaf depends on.","breadcrumbs":"Supply Chain Security » Security Fix Automation » Semi-Automated Upstream-First Process","id":"160","title":"Semi-Automated Upstream-First Process"},"161":{"body":"Ghaf is released 4 times per year at the end of each quarter. Additional releases may be made as per request. Release numbering scheme: ghaf-yy.mm .","breadcrumbs":"Release Notes » Ghaf Release Notes","id":"161","title":"Ghaf Release Notes"},"162":{"body":"Release ghaf-23.12 Release ghaf-23.09 Release ghaf-23.06 Release ghaf-23.05","breadcrumbs":"Release Notes » In This Chapter","id":"162","title":"In This Chapter"},"163":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release ghaf-23.12","id":"163","title":"Release ghaf-23.12"},"164":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.12","breadcrumbs":"Release Notes » Release ghaf-23.12 » Release Branch","id":"164","title":"Release Branch"},"165":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.12 » Supported Hardware","id":"165","title":"Supported Hardware"},"166":{"body":"NixOS update to 23.11: NixOS 23.11 released! Further modularization of the Ghaf framework: Ghaf as Library: Templates . CLI-based installer. Lenovo X1 Carbon Gen 11: Configurable PCI and USB devices passthrough. Network Manager: support from GUIVM to NETVM. Windows VM support. Added Ghaf icons and the background image. Secure Boot is disabled by default. The hardened host kernel baseline is disabled by default. Initial hardened hypervisor integration is disabled by default. NVIDIA Jetson Orin: Configurable PCI passthrough. Jetpack baseline software updates and fixes. Initial OP-TEE and TEE Proxy support. Cross-compilation of the ARM targets (NVIDIA) on the x86 server. SLSA v1.0 level 2 compatible build. Development, testing, and performance tooling improvements.","breadcrumbs":"Release Notes » Release ghaf-23.12 » What is New in ghaf-23.12","id":"166","title":"What is New in ghaf-23.12"},"167":{"body":"Fixed bugs that were in the ghaf-23.09 release: Chromium AppVM does not boot up on X1. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes). Copy and paste text from or to Chromium AppVM does not work. Copy text from the address bar does not work as well. Personal security keys cannot be created. Cannot move the Element window by dragging with the mouse.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Bug Fixes","id":"167","title":"Bug Fixes"},"168":{"body":"Issue Status Comments The GALA application does not work In Progress Will be fixed in the next release. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Copying text from the browser address bar to another application does not work In Progress Under investigation Windows launcher application does not work on NUC and AGX In Progress Workaround: launch Windows VM from the command line. Time synchronization between host and VMs does not work in all scenarios In Progress Under investigation The taskbar disappears after the external display is disconnected from Lenovo X1 In Progress Under investigation Closing and re-opening a deck lid of a X1 laptop with running Ghaf causes instability In Progress Workaround: Keep a deck lid of a laptop open while working with Ghaf. Applications do not open from icons when NETVM is restarted In Progress Workaround: Restart AppVMs.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Known Issues and Limitations","id":"168","title":"Known Issues and Limitations"},"169":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Environment Requirements","id":"169","title":"Environment Requirements"},"17":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal Host","id":"17","title":"Minimal Host"},"170":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.12/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.12_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.12_Lenovo_X1_Carbon_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.12_Nvidia_Orin_AGX_cross-compiled-no-demoapps.tar.xz [1] , ghaf-23.12_Nvidia_Orin_AGX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_AGX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_Nvidia_Orin_NX_cross-compiled-no-demoapps [1] .tar.xz, ghaf-23.12_Nvidia_Orin_NX_cross-compiled.tar.xz, ghaf-23.12_Nvidia_Orin_NX_native-build.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.12_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit [1] no-demoapps images do not include Chromium, Zathura, and GALA applications.","breadcrumbs":"Release Notes » Release ghaf-23.12 » Installation Instructions","id":"170","title":"Installation Instructions"},"171":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release ghaf-23.09","id":"171","title":"Release ghaf-23.09"},"172":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.09","breadcrumbs":"Release Notes » Release ghaf-23.09 » Release Branch","id":"172","title":"Release Branch"},"173":{"body":"The following target hardware is supported by this release: NVIDIA Jetson AGX Orin NVIDIA Jetson Orin NX Generic x86 (PC) Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11","breadcrumbs":"Release Notes » Release ghaf-23.09 » Supported Hardware","id":"173","title":"Supported Hardware"},"174":{"body":"New supported target hardware: NVIDIA Jetson Orin NX Polarfire Icicle Kit Lenovo ThinkPad X1 Carbon Gen 11 Modularization of the Ghaf framework: Ghaf as Library: Templates . NVIDIA Jetson Orin NX Ethernet passthrough. Lenovo X1 Carbon Gen 11: Graphics passthrough to GUIVM. Launching Application VMs through GUIVM (Chromium, Gala, and Zathura). Paravirtualized audio. Webcam passthrough. Touchpad passthrough. Cross-compilation of the ARM targets (NVIDIA) on the x86 server (with demo applications excluded).","breadcrumbs":"Release Notes » Release ghaf-23.09 » What is New in ghaf-23.09","id":"174","title":"What is New in ghaf-23.09"},"175":{"body":"Fixed bugs that were in the ghaf-23.06 release: NVIDIA Jetson AGX Orin: Cannot open Windows launcher via shortcut or command line. No Windows launcher in x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Bug Fixes","id":"175","title":"Bug Fixes"},"176":{"body":"Issue Status Comments Chromium AppVM does not boot up on X1 In Progress Intermittent timing issue, under investigation. The GALA app does not work In Progress Will be fixed in the next release. Shutdown or reboot of Lenovo X1 takes a lot of time (7 minutes) In Progress Advice: be patient or, if in hurry, press power key for 15 sec. Copy and paste text from or to Chromium AppVM does not work In Progress Element cannot be opened on NVIDIA AGX Orin HW on the host Will not Fix Applications on the host will not be supported in the longer term. Cannot move the GALA/Element window by dragging with the mouse In Progress Workaround: press Windows key when moving the mouse. Personal security keys cannot be created In Progress Workaround: use another device to create security keys. No audio in a USB headset when running the application on the host Will not Fix Audio on a host is not supported. Cannot log in to the Element chat with a Google account In Progress Workaround for x86: create a user specifically for Element. Windows launcher application does not work In Progress Workaround: launch Windows VM from the command line.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Known Issues and Limitations","id":"176","title":"Known Issues and Limitations"},"177":{"body":"There are no specific requirements for the environment with this release.","breadcrumbs":"Release Notes » Release ghaf-23.09 » Environment Requirements","id":"177","title":"Environment Requirements"},"178":{"body":"Released images are available at vedenemo.dev/files/releases/ghaf_23.09/ . Download the required image and use the following instructions: Release Image Build and Run ghaf-23.09_Generic_x86.tar.xz Running Ghaf Image for x86 Computer ghaf-23.09_Lenovo_X1_Gen11.tar.xz Running Ghaf Image for Lenovo X1 ghaf-23.09_Nvidia_Orin_AGX.tar.xz, ghaf-23.09_Nvidia_Orin_NX.tar.xz Ghaf Image for NVIDIA Jetson Orin AGX ghaf-23.09_PolarFire_RISC-V.tar.xz Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Release Notes » Release ghaf-23.09 » Installation Instructions","id":"178","title":"Installation Instructions"},"179":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release ghaf-23.06","id":"179","title":"Release ghaf-23.06"},"18":{"body":"Proposed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Status","id":"18","title":"Status"},"180":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.06","breadcrumbs":"Release Notes » Release ghaf-23.06 » Release Branch","id":"180","title":"Release Branch"},"181":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.06 » Supported Hardware","id":"181","title":"Supported Hardware"},"182":{"body":"Ghaf Modularization (partially done): general description and context on how to use: Ghaf as Library: Templates the development status: https://github.com/tiiuae/ghaf/tree/ghaf-23.06/modules . SLSA v1.0 level provenance file included. Ghaf version information (query). NixOS is updated to 23.05: NixOS 23.05 released!","breadcrumbs":"Release Notes » Release ghaf-23.06 » What is New in ghaf-23.06","id":"182","title":"What is New in ghaf-23.06"},"183":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Bug Fixes","id":"183","title":"Bug Fixes"},"184":{"body":"Known since ghaf-23.05: Personal security keys cannot be created. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account Workaround for x86: create a separate user account for Element. Element cannot be opened on NVIDIA Jetson AGX Orin. Cannot move the GALA/Element window by dragging with the mouse. No windows-launcher in the x86 build.","breadcrumbs":"Release Notes » Release ghaf-23.06 » Known Issues and Limitations","id":"184","title":"Known Issues and Limitations"},"185":{"body":"","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release ghaf-23.05","id":"185","title":"Release ghaf-23.05"},"186":{"body":"https://github.com/tiiuae/ghaf/tree/ghaf-23.05","breadcrumbs":"Release Notes » Release ghaf-23.05 » Release Branch","id":"186","title":"Release Branch"},"187":{"body":"The following target hardware is supported by this release: NXP i.MX 8QM-MEK NVIDIA Jetson AGX Orin Generic x86 (PC)","breadcrumbs":"Release Notes » Release ghaf-23.05 » Supported Hardware","id":"187","title":"Supported Hardware"},"188":{"body":"This is the first release of Ghaf including support for: the Wayland display server protocol (on the host) the graphical interface with Weston Window Manager (on the host) the Chromium browser (on the host) Element, a Matrix-based chat client (on the host) the Google Android look-alike (GALA) application Ghaf Framework is under active development, some of the features may not be stable.","breadcrumbs":"Release Notes » Release ghaf-23.05 » What is New in ghaf-23.05","id":"188","title":"What is New in ghaf-23.05"},"189":{"body":"Build time is used as the current time on NVIDIA Jetson AGX Orin. Prevents logging into GALA and Element applications. Personal security keys cannot be created: Prevents running Android in the Cloud. Workaround: use another device to create security keys. NVIDIA Jetson AGX Orin: сannot open windows-launcher using a shortcut or a command line. No audio in a USB headset. Cannot log in to the Element chat with a Google account. Workaround: create a separate user account for Element.","breadcrumbs":"Release Notes » Release ghaf-23.05 » Known Issues and Limitations","id":"189","title":"Known Issues and Limitations"},"19":{"body":"Ghaf uses the default NixOS configuration as a baseline to build the target image. The default NixOS configuration is targeted for more general use with the inclusion of multiple packages that are not supporting the Ghaf design target of a minimal TCB to protect the host. Depending on the flexibility of the NixOS configuration, Ghaf minimal host may require new development to support the requirements. This structure in the Ghaf host configuration imports the NixOS minimal profile which suits the minimal TCB better. Even better, the modular declarative profile enables the further optimization of the minimal TCB while supporting other profiles that suit the evaluation of other objectives such as feasibility studies of additional functionality, security and performance.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Context","id":"19","title":"Context"},"190":{"body":"The Ghaf Platform can be used in various different environments, configurations, and hardware to serve several purposes. Ghaf is not a fully-fledged product but a module that can serve as a centerpiece to enable secure edge systems.","breadcrumbs":"Showcases » Showcases","id":"190","title":"Showcases"},"191":{"body":"Secure Laptop demonstrates how our open-source Ghaf Platform can increase the security offering for laptops through hardware-backed isolation by means of virtualization. We use Lenovo ThinkPad X1 Carbon Gen 11 as a target device. In this showcase, the following applications are running in isolated VMs: Windows VM Browser VM that can be used as an application launcher. For example, MS Office suite running in the Browser environment. All data is stored in the enterprise cloud. PDF Viewer VM. No data can be extracted or shared locally. Cloud Android VM for secure communication. Each VM operates independently and securely within its own isolated environment, without interference from other VMs running on the same physical hardware. Additionally beneath the surface Ghaf contains two hidden system VMS: Networking VM GUI VM Ghaf Secure Laptop","breadcrumbs":"Showcases » Secure Laptop","id":"191","title":"Secure Laptop"},"192":{"body":"Running Windows VM on Ghaf Running Cuttlefish on Ghaf","breadcrumbs":"Showcases » In This Chapter","id":"192","title":"In This Chapter"},"193":{"body":"You can run Windows 11 in a VM on Ghaf with NVIDIA Jetson Orin AGX (ARM64) or Generic x86 device. This method uses QEMU as VMM. For information on how to build and run a Ghaf image, see Build and Run . Windows 11 in VM","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM on Ghaf","id":"193","title":"Running Windows 11 in VM on Ghaf"},"194":{"body":"Depending on the device: For Generic x86, download Windows 11 ISO ( Win11_22H2_English_x64v2.iso ) from the Microsoft website. For NVIDIA Jetson Orin AGX (ARM64), use your Microsoft account to join the Windows Insider Program . On the Windows 11 on Arm Insider Preview page, select the Windows 11 Client Arm64 Insider Preview (Canary) - Build 25324 build and the language to download a VHDX image file. Copy the image to an external USB drive. Connect the USB drive to the device with the latest version of Ghaf installed, and mount it to some folder. sudo mkdir /mnt\nsudo mount /dev/sda /mnt WARNING: [For NVIDIA Jetson Orin AGX] Make sure to use a fresh VHDX image file that was not booted in another environment before.","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Getting Windows 11 Image","id":"194","title":"Getting Windows 11 Image"},"195":{"body":"Running Windows 11 in VM on ARM64 Device (NVIDIA Jetson Orin AGX) In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. TIP: If after pressing Shift+F10 the command window is not displayed, try to switch between opened windows by using Alt+Tab. Running Windows 11 in VM on Generic x86 Device On x86_64 device Windows 11 VM can be launched with either an ISO image or QCOW2: For an ISO image, the script creates an empty QCOW2 image in the same directory which is used as a system disk in the VM. After installing Windows 11, run the script for the QCOW2 image. Do the following: In the Weston terminal, go to the directory with the Windows 11 image and run the VM without sudo and as a non-root user using the following Ghaf script: cd /mnt\nwindows-launcher ./Win11_22H2_English_x64v2.iso When the VM starts booting press any key to boot from a CD. In order to bypass Windows 11 system requirements, open cmd with Shift+F10 and type regedit. In HKEY_LOCAL_MACHINE\\SYSTEM\\Setup, right-click New > Key and type LabConfig. For this key create two DWORD (32-bit) parameters: Name: BypassTPMCheck, value 1. Name: BypassSecureBootCheck, value 1. TIP: [For Ghaf running on a laptop] If after pressing Shift+F10 the command window is not displayed, try again with the Fn key (Shift+Fn+F10) or switch between opened windows by using Alt+Tab. Install Windows 11 in the VM. Windows 11 requires Internet access to finish the setup. To boot the VM without an Internet connection, open cmd with Shift+F10 and type OOBE\\BYPASSNRO. After the configuration restart click “I don’t have internet“ to skip the Internet connection step and continue the installation. After the installation is completed the script is launched with the QCOW2 image: windows-launcher ./win11.qcow2","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Running Windows 11 in VM","id":"195","title":"Running Windows 11 in VM"},"196":{"body":"Instead of running Windows launcher from the command line it is possible to launch the Windows 11 VM by clicking the corresponding icon in the Weston taskbar. When you click it for the first time, you will see a file selection dialog. Once Windows 11 image has been selected, it saves the path to the ~/.config/windows-launcher-ui.conf configuration file and launches the VM. Next time, the VM will be immediately launched with one click. In order to use a different image instead of the saved one, delete the configuration file: rm ~/.config/windows-launcher-ui.conf","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Using UI to Launch Windows 11 VM","id":"196","title":"Using UI to Launch Windows 11 VM"},"197":{"body":"It is possible to pass additional parameters to QEMU when running Windows launcher from the command line. NVIDIA Jetson Orin AGX (ARM64) example: windows-launcher ./Windows11_InsiderPreview_Client_ARM64_en-us_25324.VHDX -serial stdio Generic x86 example: windows-launcher ./win11.qcow2 -serial stdio","breadcrumbs":"Showcases » Running Windows VM on Ghaf » Passing Additional Parameters to QEMU","id":"197","title":"Passing Additional Parameters to QEMU"},"198":{"body":"Cuttlefish is a configurable virtual Android device (virtual-machine based Android emulator) that can run both remotely (using third-party cloud offerings such as Google Cloud Engine) and locally (on Linux x86 machines). For more information about Cuttlefish, see the official Cuttlefish Virtual Android Devices documentation. You can run Android as a VM on Ghaf for testing and development purposes using NVIDIA Jetson Orin AGX (ARM64) or Generic x86.","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Android Cuttlefish Virtual Device on Ghaf","id":"198","title":"Running Android Cuttlefish Virtual Device on Ghaf"},"199":{"body":"Download host_package (includes binaries and scripts that must be run on the host machine to set up and run the Cuttlefish virtual device) and aosp_cf_phone-img (a system image) files from the Android CI server and copy them to Ghaf: For NVIDIA Jetson Orin AGX (ARM64): cvd-host_package.tar.gz and aosp_cf_arm64_phone-img-9970479.zip For Generic x86: cvd-host_package.tar.gz and aosp_cf_x86_64_phone-img-9970479.zip Download a host package from the same build as the image. Make sure Internet connection is working in Ghaf. If the system gets an IP address but the DNS server is not responding, set the correct date and time. [For x86_64 only] Install the required packages: NIXPKGS_ALLOW_UNSUPPORTED_SYSTEM=1 nix-env -i python3 openssl bash unzip Create some hackish links that are required for running Cuttlefish: sudo ln -s $(which mv) /bin/mv\nsudo ln -s $(which bash) /bin/bash\nsudo mkdir -p /usr/lib/cuttlefish-common/bin/\nsudo touch /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo chmod 755 /usr/lib/cuttlefish-common/bin/capability_query.py\nsudo groupadd -f cvdnetwork\nsudo usermod -aG cvdnetwork $USER\nsudo usermod -aG kvm $USER\nsudo su ghaf Change directory to the one that contains host package and image files and extract them: For NVIDIA Jetson Orin AGX (ARM64): tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_arm64_phone-img-9970479.zip For Generic x86: tar xvf cvd-host_package.tar.gz\nunzip aosp_cf_x86_64_phone-img-9970479.zip [For x86_64 only] Extra steps to fix missing dependencies: Find ld-linux-x86-64.so.2 and create a link in /lib64: sudo find /nix/store -name ld-linux-x86-64.so.2\nsudo mkdir /lib64\nsudo ln -s /nix/store/dg8mpqqykmw9c7l0bgzzb5znkymlbfjw-glibc-2.37-8/lib/ld-linux-x86-64.so.2 /lib64 Find libdrm.so.2 in the /nix/store and copy it to the lib64 directory where the host package was extracted: sudo find /nix/store -name libdrm.so.2\ncp /nix/store/2jdx0r0yiz1k38ra0diwqm5akb0k1rjh-libdrm-2.4.115/lib/ ./lib64","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Installing Cuttlefish","id":"199","title":"Installing Cuttlefish"},"2":{"body":"The Ghaf Platform development is focused on the transition to a modular architecture for edge devices. Products such as secure phones, drones, laptops, and other communication devices have unique challenges in their respective hardware and software ecosystems. Enabling the integration of individual technology stacks into an organizational framework can be a challenging task. The Ghaf Platform is designed to ease this process and enable research to overcome a number of challenges.","breadcrumbs":"About Ghaf » Ghaf Platform Applications","id":"2","title":"Ghaf Platform Applications"},"20":{"body":"Following table describes the development requirements of minimal host. All requirements originate from TII SSRC unless otherwise noted. Scope further defines: target configuration: R for release, D for debug architectural variant : V for virtualization supporting variant, A for all, including No Virtualization Compliance states the progress of requirement compliance as follows: D for Designed, design requirement from TII SSRC for analysis and evaluation. I for Implemented, design requirement met with possible, limitations documented under Consequences . P for Proposed, raised for discussion but not yet designed. M for Met, the requirement is reviewed and approved at technology readiness level 4 . ID Requirement Description Scope Compliance MH01 Defined in nix Host declaration in nix R&D,A I MH02 Reduced profile Remove unnecessary R, V I MH03 No networking Host has no networking R, V D MH04 No graphics Host has no GUI stack R, V D MH05 No getty Host has no terminal R, V P MH06 No nix tooling Only /nix/store, no nix R, V P MH07 Minimal defconfig Host kernel is minimized R, V D MH08 Update via adminvm A/B update outside host R, V P MH09 Read-only filesystem Mounted RO, integrity checked R, V P This list of requirements is not yet comprehensive and may be changed based on findings of further analysis as stated in the following section.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Requirements","id":"20","title":"Requirements"},"200":{"body":"Go to the directory with exctacted host package and image files and run Cuttlefish: HOME=$PWD ./bin/launch_cvd -report_anonymous_usage_stats=n It will take some time to load. There should be the following messages in the console when the VM is booted and ready to use: VIRTUAL_DEVICE_DISPLAY_POWER_MODE_CHANGED\nVIRTUAL_DEVICE_BOOT_STARTED\nVIRTUAL_DEVICE_BOOT_COMPLETED\nVirtual device booted successfully","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Running Cuttlefish","id":"200","title":"Running Cuttlefish"},"201":{"body":"Run the Chromium browser by clicking on the corresponding icon in Weston and navigate to https://localhost:8443 . Ignore a warning about the SSL certificate (“Your connection is not private“) and click Advanced > Proceed to 127.0.0.1 (unsafe) . Click the cvd-1 Connect button. A new tab with an Android VM window will be opened. [Optionally] You can close the browser and use the following command to open a standalone window with an Android VM: chromium-browser --enable-features=UseOzonePlatform --ozone-platform=wayland --new-window --app=https://127.0.0.1:8443/client.html?deviceId=cvd-1","breadcrumbs":"Showcases » Running Cuttlefish on Ghaf » Connecting to Cuttlefish Device","id":"201","title":"Connecting to Cuttlefish Device"},"202":{"body":"This is a glossary of terms and abbreviations developed by the Ghaf team. Abbreviation is a shortened form of a word or phrase. Usually is used to save space and time, to avoid repetition of long words and phrases. The styling of abbreviations is inconsistent and includes several possible variations. Some abbreviations are formed by omitting all but the first few letters of a word. Such abbreviations usually end in a period: Mr. for mister, Oct. for October. When abbreviations are formed from the initial letters of a phrase, they are categorized as either initialisms or acronyms : With initialisms , each letter is pronounced separately. For example: FBI for Federal Bureau of Investigation, CIA for Central Intelligence Agency, CD for Compact Disk, and also OK for Okay, ‘orl korrekt‘ that is a misspelling of \"all correct\". Initialisms cannot be pronounced as words. Acronyms are another type of abbreviation formed from the initial letters but that are pronounced as if they were words themselves. For example: ROFL for ‘rolling on the floor laughing’, FEMA for Federal Emergency Management Agency, NATO for North Atlantic Treaty Organization. All acronyms are abbreviations, but not all abbreviations are acronyms. ASAP that comes from ‘as soon as possible’ and appt (for appointment) are both considered abbreviations, but only ASAP is an acronym.","breadcrumbs":"Glossary » Glossary","id":"202","title":"Glossary"},"203":{"body":"Articles (a, an, the) are common with initialisms. The indefinite article should be chosen according to the first sound—not the first letter: ‘A’ is correct before initialisms beginning with a consonant sound, including a vowel pronounced as a ‘w’ or ‘y’ sound. For example: ‘a NASA launch’, but ‘NASA launches take place’. When an initialism begins with a vowel sound (including silent consonants or a consonant pronounced with an initial vowel sound), ‘an’ should be used instead. For example, ‘read about an FBI raid’. Acronyms not require articles except when they are used adjectivally. For example: ‘the patient was diagnosed with AIDS’, but ‘the AIDS patient’; ‘the NASA launch takes place’. So, read the abbreviation aloud: it may be either an initialism or an acronym. Focus on the sounds, not on the letters: ‘ an unidentified flying object’ but ‘ a UFO’ as it pronounced “a YOO-ef-OH” (/ˌjuːɛfˈəʊ/). More examples: a EULA (“YOO-luh”), a LAN router, an XML file, an HTML page.","breadcrumbs":"Glossary » Appropriate Use of Articles before Abbreviations","id":"203","title":"Appropriate Use of Articles before Abbreviations"},"204":{"body":"If you do not find the term or abbreviation you are looking for, share your questions using GitHub Issues . Wikipedia is not a dictionary. Groups of terms and abbreviations: Project Related Core Concepts SCS Related","breadcrumbs":"Glossary » Trivia","id":"204","title":"Trivia"},"205":{"body":"","breadcrumbs":"Glossary » Project Related","id":"205","title":"Project Related"},"206":{"body":"The project code name that represents the Ghaf tree. Source: https://connectwithnature.ae/knowledge-hub/ghaf-tree","breadcrumbs":"Glossary » Ghaf","id":"206","title":"Ghaf"},"207":{"body":"Continuous Integration and Continuous Delivery is a Ghaf software development lifecycle. Continuous Integration refers to regularly integrating code changes into a shared repository, where they are automatically tested and verified. Continuous Delivery—software is released in short iterations. Currently, Continuous Deployment is not set up. Continuous Deployment—code is deployed to customers automatically.","breadcrumbs":"Glossary » CI/CD","id":"207","title":"CI/CD"},"208":{"body":"Secure Systems Research Center is a global center of excellence in the development of end-to-end security and resilience for cyber-physical and autonomous systems. SSRC is a part of TII. Source: https://www.tii.ae/secure-systems","breadcrumbs":"Glossary » SSRC","id":"208","title":"SSRC"},"209":{"body":"Technology Innovation Institute is a UAE-based research center that aims to lead global advances in artificial intelligence, autonomous robotics, quantum computing, cryptography and quantum communications, directed energy, secure communication, smart devices, advanced materials, and propulsion and space technologies. Source: https://www.tii.ae/","breadcrumbs":"Glossary » TII","id":"209","title":"TII"},"21":{"body":"This ADR adopts a custom developed minimal profile using nixpkgs. It reduces both image and root partition size by eliminating the host OS content per requirements and implements a minimal TCB. The current implementation of NixOS overridden. For more information on a minimal host profile, see minimal.nix . With the progress of implementing the requirements, the minimal host customization will be illustrated.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Decision","id":"21","title":"Decision"},"210":{"body":"","breadcrumbs":"Glossary » Core Concepts","id":"210","title":"Core Concepts"},"211":{"body":"An Architecture Decision (AD) is a justified software design choice that addresses a functional or non-functional requirement that is architecturally significant. An Architectural Decision Record (ADR) captures a single AD and its rationale; the collection of ADRs created and maintained in a project constitute its decision log. Source: https://adr.github.io/","breadcrumbs":"Glossary » ADR","id":"211","title":"ADR"},"212":{"body":"Boot and Power Management Processor. The NVIDIA processor provides a set of hardware functions that support booting process handling and offloading the power management, clock management, and reset control tasks from the CPU. Source: NVIDIA Orin Series System-on-Chip, Technical Reference Manual, Version: 1.2, Date: 29-September-2023","breadcrumbs":"Glossary » BPMP","id":"212","title":"BPMP"},"213":{"body":"A board support package is a collection of software used to boot and run the embedded system.","breadcrumbs":"Glossary » BSP","id":"213","title":"BSP"},"214":{"body":"The Dynamic Host Configuration Protocol is a network protocol that automatically sets IP addresses and other attributes to enable information transfer between network nodes. Source: Computer Networks: A Systems Approach, https://book.systemsapproach.org/internetworking/basic-ip.html#host-configuration-dhcp","breadcrumbs":"Glossary » DHCP","id":"214","title":"DHCP"},"215":{"body":"A direct memory access is a process in which data may be moved directly to or from the main memory of a computer system by operations not under the control of the central processing unit. Source: https://www.collinsdictionary.com/dictionary/english/direct-memory-access","breadcrumbs":"Glossary » DMA","id":"215","title":"DMA"},"216":{"body":"embedded MultiMediaCard","breadcrumbs":"Glossary » eMMC, e-MMC","id":"216","title":"eMMC, e-MMC"},"217":{"body":"end-user license agreement","breadcrumbs":"Glossary » EULA","id":"217","title":"EULA"},"218":{"body":"firmware","breadcrumbs":"Glossary » FW","id":"218","title":"FW"},"219":{"body":"The Google Android Look Alike application. Mobile client application for connecting to a Cloud Android device in Secured Google Cloud Platform VMs. Users see a remotely rendered Android phone desktop on their own device screen and interact with the Cloud Android device like the real mobile device. All application processing runs in the cloud.","breadcrumbs":"Glossary » GALA","id":"219","title":"GALA"},"22":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Consequences","id":"22","title":"Consequences"},"220":{"body":"graphical user interface","breadcrumbs":"Glossary » GUI","id":"220","title":"GUI"},"221":{"body":"An intrusion detection system (also intrusion prevention system or IPS) monitors network traffic for suspicious activity and report when such activity is discovered.","breadcrumbs":"Glossary » IDS","id":"221","title":"IDS"},"222":{"body":"input–output memory management unit","breadcrumbs":"Glossary » IOMMU","id":"222","title":"IOMMU"},"223":{"body":"The Internet Protocol is a set of rules for communication over the Internet, such as sending email, streaming video, or connecting to a website.","breadcrumbs":"Glossary » IP","id":"223","title":"IP"},"224":{"body":"An Instruction Set Architecture is part of the abstract model of a computer that defines how the CPU is controlled by the software. Source: https://www.arm.com/glossary/isa","breadcrumbs":"Glossary » ISA","id":"224","title":"ISA"},"225":{"body":"Kernel-based Virtual Machine, an open-source virtualization technology built into Linux.","breadcrumbs":"Glossary » KVM","id":"225","title":"KVM"},"226":{"body":"Kernel-based Virtual Machine Secured, an open-source project. Source: https://github.com/jkrh/kvms","breadcrumbs":"Glossary » KVMS","id":"226","title":"KVMS"},"227":{"body":"Lab Wayland Compositor, a window-stacking compositor for Wayland, an open-source project. Source: https://github.com/labwc/labwc","breadcrumbs":"Glossary » labws, LabWS","id":"227","title":"labws, LabWS"},"228":{"body":"memory management unit","breadcrumbs":"Glossary » MMU","id":"228","title":"MMU"},"229":{"body":"Message Signaled Interrupts","breadcrumbs":"Glossary » MSI","id":"229","title":"MSI"},"23":{"body":"Ghaf minimal host module is implemented in nix modules . Currently, host and VM declarations are implemented using microvm.nix but this is not strict requirement for ghaf release mode declarations if the limitations or dependencies of microvm.nix do not comply with other requirements. This may require separate release mode custom nix declarations to support flexibility with microvm.nix in debug mode.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Defined in nix (MH01)","id":"23","title":"Defined in nix (MH01)"},"230":{"body":"A Linux distribution based on the Nix package manager and build system. Source: https://nixos.wiki/wiki/Overview_of_the_NixOS_Linux_distribution","breadcrumbs":"Glossary » NixOS","id":"230","title":"NixOS"},"231":{"body":"original equipment manufacturer","breadcrumbs":"Glossary » OEM","id":"231","title":"OEM"},"232":{"body":"operating system","breadcrumbs":"Glossary » OS","id":"232","title":"OS"},"233":{"body":"Peripheral Component Interconnect","breadcrumbs":"Glossary » PCI","id":"233","title":"PCI"},"234":{"body":"Peripheral Component Interconnect Express","breadcrumbs":"Glossary » PCIe","id":"234","title":"PCIe"},"235":{"body":"A generic and open source machine emulator and virtualizer. Source: QEMU’s documentation","breadcrumbs":"Glossary » QEMU","id":"235","title":"QEMU"},"236":{"body":"The Server Base System Architecture specifies a hardware system architecture, based on Arm 64-bit architecture, that server system software, for example operating systems, hypervisors, and firmware can rely on. Source: Arm® Server Base System Architecture 7.1 Platform Design Document","breadcrumbs":"Glossary » SBSA","id":"236","title":"SBSA"},"237":{"body":"A stock keeping unit, is a unique code used by sellers to identify and track products.","breadcrumbs":"Glossary » SKU","id":"237","title":"SKU"},"238":{"body":"A system on chip, a microchip that contains the necessary electronic circuits for a fully functional system on a single integrated circuit (IC).","breadcrumbs":"Glossary » SoC","id":"238","title":"SoC"},"239":{"body":"solid-state drive","breadcrumbs":"Glossary » SSD","id":"239","title":"SSD"},"24":{"body":"Initial Ghaf minimal profile host size reduction is implemented with metrics on host total size and break down of size of the largest dependencies. Based on the metrics, further analysis is needed on several key modules including, but not limited to, kernel, systemd and nixos.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Reduced profile (MH02)","id":"24","title":"Reduced profile (MH02)"},"240":{"body":"Trusted computing base defines the security requirements by providing separation of users and data or resources. Source: Department of Defense trusted computer system evaluation criteria, DoD 5200.28-STD, 1985","breadcrumbs":"Glossary » TCB","id":"240","title":"TCB"},"241":{"body":"Transport Layer Security, a security protocol.","breadcrumbs":"Glossary » TLS","id":"241","title":"TLS"},"242":{"body":"An universal asynchronous receiver-transmitter, a hardware communication protocol.","breadcrumbs":"Glossary » UART","id":"242","title":"UART"},"243":{"body":"Unified Extensible Firmware Interface is a specifications that defines a new model for the interface between personal-computer operating systems and platform firmware. Source: Unified Extensible Firmware Interface Forum","breadcrumbs":"Glossary » UEFI","id":"243","title":"UEFI"},"244":{"body":"user interface","breadcrumbs":"Glossary » UI","id":"244","title":"UI"},"245":{"body":"Virtual Function I/O Source: https://docs.kernel.org/driver-api/vfio.html","breadcrumbs":"Glossary » VFIO","id":"245","title":"VFIO"},"246":{"body":"virtual machine","breadcrumbs":"Glossary » VM","id":"246","title":"VM"},"247":{"body":"Virtual Machine Manager","breadcrumbs":"Glossary » VMM","id":"247","title":"VMM"},"248":{"body":"zero trust architecture, zero trust security model","breadcrumbs":"Glossary » ZTA","id":"248","title":"ZTA"},"249":{"body":"","breadcrumbs":"Glossary » SCS Related","id":"249","title":"SCS Related"},"25":{"body":"Currently ghaf host profile for both release and debug target has networking. Requirement of no networking on release target requires declarative host configuration where: The release target host kernel is built without networking support. Networking must be enabled for debug target. The release target host user space has no networking tools nor configurations. Access to tools on host must be enabled for debug target. To support development of configuration changes between release and debug target, the debug target must support networking. This also supports No Virtualization-variant development in which networking must be enabled. The exception to no networking requirement is the virtual machine manager control socket from host to guest(s). The amount of required kernel configuration dependencies and impact to different VMMs must be further analyzed. No networking has impact on how vmd adminvm to host communication is implemented. With no networking, shared memory is proposed. No networking may have impact on how the guest-to-guest inter virtual machine communication configuration must implemented with VMMs. This must be further analyzed.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No networking (MH03)","id":"25","title":"No networking (MH03)"},"250":{"body":"certificate authority","breadcrumbs":"Glossary » CA","id":"250","title":"CA"},"251":{"body":"Certificate Management System","breadcrumbs":"Glossary » CMS","id":"251","title":"CMS"},"252":{"body":"Edwards-curve Digital Signature Algorithm","breadcrumbs":"Glossary » EdDSA","id":"252","title":"EdDSA"},"253":{"body":"The GNU Privacy Guard (also GnuPG) is a complete and free implementation of the OpenPGP standard as defined by RFC4880. Source: https://gnupg.org/","breadcrumbs":"Glossary » GPG","id":"253","title":"GPG"},"254":{"body":"A hardware security module is a crypto processor designed for the crypto key lifecycle protection.","breadcrumbs":"Glossary » HSM","id":"254","title":"HSM"},"255":{"body":"Cryptography and SSL/TLS Toolkit. Source: https://www.openssl.org/","breadcrumbs":"Glossary » OpenSSL","id":"255","title":"OpenSSL"},"256":{"body":"A public key infrastructure is the framework of encryption and cybersecurity.","breadcrumbs":"Glossary » PKI","id":"256","title":"PKI"},"257":{"body":"A Python binding to libsodium, which is a fork of the Networking and Cryptography library. Source: https://pypi.org/project/PyNaCl/","breadcrumbs":"Glossary » PyNaCl","id":"257","title":"PyNaCl"},"258":{"body":"registration authority","breadcrumbs":"Glossary » RA","id":"258","title":"RA"},"259":{"body":"A software bill of materials is a machine-readable document of all software components, open source licenses, and dependencies in a target software.","breadcrumbs":"Glossary » SBOM","id":"259","title":"SBOM"},"26":{"body":"Ghaf minimal host profile for release target has no graphics. Graphics will be compartmentalized to GUIVM. All graphics and display output related components and dependencies, including kernel drivers, must be removed from kernel configuration. Those are to be passed through to GUIVM.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No graphics (MH04)","id":"26","title":"No graphics (MH04)"},"260":{"body":"A supply chain security is a process of securing the machinery of the development, building, and release environment.","breadcrumbs":"Glossary » SCS","id":"260","title":"SCS"},"261":{"body":"A security chip that performs encryption and decryption operations.","breadcrumbs":"Glossary » secure cryptoprocessor","id":"261","title":"secure cryptoprocessor"},"262":{"body":"An immutable blob of data; primarily refers to software, but SLSA can be used for any artifact. Source: https://slsa.dev/spec/v0.1/terminology","breadcrumbs":"Glossary » software artifact","id":"262","title":"software artifact"},"263":{"body":"Supply chain Levels for Software Artifacts is a security framework, a check-list of standards and controls to prevent tampering, improve integrity, and secure packages and infrastructure in your projects, businesses or enterprises. Source: https://slsa.dev/","breadcrumbs":"Glossary » SLSA","id":"263","title":"SLSA"},"264":{"body":"Our experience in research, studies and lessons learned activities: i.MX 8QM platform bus ethernet passthrough System installation","breadcrumbs":"Research Notes » Research Notes","id":"264","title":"Research Notes"},"265":{"body":"The i.MX 8QuadMax (i.MX 8QM, iMX8QM, imx8qm) passthrough host setup relies as much as possible on the default i.MX 8QM MEK (imx8qm-mek) device tree configuration. Some guidance on what is required for passthrough to work on i.MX 8 can be found in the XEN device trees. This document provides a detailed description of what has been done and why. For the more impatient readers, the example device tree files for i.MX 8QM guest and host with Ethernet passthrough are available here: Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts NOTE 20.12.2022: At the current state, the passthrough is not completely functional. The Ethernet device (fec1) or even both devices (fec1 and fec2) can be set up in the guest. The devices respond and seem functional, the device node does activate, the drivers load correctly, the power state of the device changes to active, and the link state of the Ethernet connection seems to change correctly. However, for some reason, no actual Ethernet data packages go through the Ethernet adapter. The most visible issue is that no interrupts come to the Ethernet devices. See the following topics: i.MX 8QM Ethernet Passthrough Host Kernel Configuration Host Device Tree Explained Other Notes About Passthrough Changes in U-Boot Running Platform Device Passthrough in QEMU Guest Setup Adding Devices to Guest Some Final Touches for Guest Devices Compiling the Device Tree Source to Binary Form Compiling for Guest Compiling for Host Running QEMU with Passthrough Platform Devices","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » i.MX 8QM Ethernet Passthrough","id":"265","title":"i.MX 8QM Ethernet Passthrough"},"266":{"body":"Kernel version 5.10 was used during the setup. For the passthrough to work, a few kernel configuration options need to be added to the default i.MX 8QM configuration: CONFIG_VFIO_PLATFORM=y CONFIG_IOMMU_DEFAULT_PASSTHROUGH=y CONFIG_VFIO_PLATFORM=y CONFIG_ARM_SMMU_V3_SVA=y","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Kernel Configuration","id":"266","title":"Host Kernel Configuration"},"267":{"body":"The default Freescale i.MX 8QM MEK configuration is included and then updated to get the Ethernet device passthrough configuration added on top of the original device configuration. There are two problems with using the i.MX 8 XEN configuration as a reference. The first issue is that the configuration between XEN and KVM do not map one to one. The second issue is more specific to Ethernet passthrough, as i.MX 8 XEN configuration does not set up passthrough for Ethernet so most of the configuration needs to be figured out from scratch. #include \"freescale/imx8qm-mek.dts\"\n/ { domu { /* * There are 5 MUs, 0A is used by Dom0, 1A is used * by ATF, so for DomU, 2A/3A/4A could be used. * SC_R_MU_0A * SC_R_MU_1A * SC_R_MU_2A * SC_R_MU_3A * SC_R_MU_4A * The rsrcs and pads will be configured by uboot scu_rm cmd */ #address-cells = <1>; #size-cells = <0>; doma { compatible = \"xen,domu\"; /* * The name entry in VM configuration file * needs to be same as here. */ domain_name = \"DomU\"; /* * The reg property will be updated by U-Boot to * reflect the partition id. */ reg = <0>; /* * Initialize and activate the Mailbox MU2A at boot */ init_on_rsrcs = < IMX_SC_R_MU_2A >; /* * Mark the Mailbox and Ethernet adapter power domains available to guest */ rsrcs = < IMX_SC_R_MU_2A IMX_SC_R_ENET_0 >; /* * Mark the pads for ethernet adapter fec1 available to guest */ pads = < IMX8QM_ENET0_MDIO IMX8QM_ENET0_MDC IMX8QM_ENET0_REFCLK_125M_25M IMX8QM_ENET0_RGMII_TXC IMX8QM_ENET0_RGMII_TX_CTL IMX8QM_ENET0_RGMII_TXD0 IMX8QM_ENET0_RGMII_TXD1 IMX8QM_ENET0_RGMII_TXD2 IMX8QM_ENET0_RGMII_TXD3 IMX8QM_ENET0_RGMII_RXC IMX8QM_ENET0_RGMII_RX_CTL IMX8QM_ENET0_RGMII_RXD0 IMX8QM_ENET0_RGMII_RXD1 IMX8QM_ENET0_RGMII_RXD2 IMX8QM_ENET0_RGMII_RXD3 IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETB IMX8QM_SCU_GPIO0_07 IMX8QM_SPI0_CS1 IMX8QM_SPI2_CS1 IMX8QM_SAI1_RXFS IMX8QM_SAI1_RXC >; /* GPIOS as default from imxqm XEN device tree */ gpios = <&lsio_gpio1 13 GPIO_ACTIVE_LOW>, <&lsio_gpio1 19 GPIO_ACTIVE_LOW>, <&lsio_gpio1 27 GPIO_ACTIVE_LOW>, <&lsio_gpio1 28 GPIO_ACTIVE_LOW>, <&lsio_gpio1 30 GPIO_ACTIVE_LOW>, <&lsio_gpio4 1 GPIO_ACTIVE_LOW>, <&lsio_gpio4 3 GPIO_ACTIVE_LOW>, <&lsio_gpio4 6 GPIO_ACTIVE_LOW>, <&lsio_gpio4 9 GPIO_ACTIVE_LOW>, <&lsio_gpio4 11 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 19 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 22 GPIO_ACTIVE_LOW>, <&lsio_gpio4 25 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 26 GPIO_ACTIVE_HIGH>, <&lsio_gpio4 27 GPIO_ACTIVE_LOW>, <&lsio_gpio4 29 GPIO_ACTIVE_LOW>; }; };\n}; /* * Add iommus property for the passed through device nodes to allow setting up vfio * The device type \"compatible\" is changed to prevent the system from loading a * driver the the adapter. * Most other properties are removed from the adapter. */\n&fec1 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ phy-handle; /delete-property/ pinctrl-names; /delete-property/ pinctrl-0;\n}; /* * The device is not being used by guest. Just to make sure it is removed from iommu * group and disabled. */\n&fec2 { /delete-property/ iommus; status = \"disabled\";\n}; /* * Timer device for fec1\n&enet0_lpcg { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\"; /delete-property/ power-domains; /delete-property/ clocks; /delete-property/ clock-names; /delete-property/ assigned-clocks; /delete-property/ assigned-clock-rates; /delete-property/ pinctrl-0;\n}; &enet1_lpcg { /delete-property/ iommus; status = \"disabled\";\n}; &lsio_mu2 { iommus = <&smmu 0x12 0x7f80>; compatible = \"fsl,dummy\"; status = \"okay\";\n}; /*\n* Remove iommus properties from other devices which are not passed through for Network VM\n*/\n&usdhc1 { /delete-property/ iommus;\n}; &usdhc2 { /delete-property/ iommus;\n}; &usdhc3 { /delete-property/ iommus;\n}; &sata { /delete-property/ iommus;\n}; &usbotg3 { /delete-property/ iommus;\n}; &usbotg3_cdns3 { /delete-property/ iommus;\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Host Device Tree Explained","id":"267","title":"Host Device Tree Explained"},"268":{"body":"All devices which belong to the same VFIO/IOMMU group need to be passed through to the guest. To prevent the device from being initialized by the host, change the device-compatible property to a dummy such as \"fsl,dummy\". The device status need needs to be \"okay\" for the device node to be available. If U-Boot finds devices that appear in the doma rsrcs that contains the properties listed below, the device will get removed from the DTB: power-domains clocks clock-names assigned-clocks assigned-clock-rates pinctrl-0","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Other Notes About Passthrough","id":"268","title":"Other Notes About Passthrough"},"269":{"body":"In our host device tree, we defined a couple of \"rsrcs\" resources to be handed over to the guest system. The ownership of these registers needs to be transferred to the guest after loading our device tree and before the actual boot. This can be done in U-Boot with a command: scu_rm dtb ${fdt_addr} The easiest way to accomplish this automatically during boot is to add the \"scu_rm\" to the default i.MX 8QM U-Boot \"boot_os\" command and save the changes as below: setenv boot_os 'scu_rm dtb ${fdt_addr}; booti ${loadaddr} - ${fdt_addr};'\nsaveenv","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Changes in U-Boot","id":"269","title":"Changes in U-Boot"},"27":{"body":"Ghaf host in release mode must have no terminals (TTYs) to interact with. In the current state of development, this cannot be enabled yet and has minimum requirement of system logging outside the host. Proposed design to approach this is requirement is to enable getty declaratively only in a debug serial terminal under modules/development .","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No getty (MH05)","id":"27","title":"No getty (MH05)"},"270":{"body":"Before you start QEMU, the passedthrough devices need to be bind to the VFIO driver. In some cases, the default driver needs to be unbind before the device can be bind to VFIO. However, in this case, all devices were changed to use the dummy device type in the device tree, so the step below is not required for this setup. echo 5d1d0000.mailbox > /sys/bus/platform/devices/5d1d0000.mailbox/driver/unbind\necho 5b040000.ethernet > /sys/bus/platform/devices/5b040000.ethernet/driver/unbind\necho 5b230000.clock-controller > /sys/bus/platform/devices/5b230000.clock-controller/driver/unbind The VFIO driver allows user-level access to the devices. Binding required devices to VFIO can be done as below: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After binding the devices to VFIO so it is possible to pass the devices to QEMU using \" -device vfio-platform \" arguments as below. The order in which the device arguments are given to QEMU may have an effect on some device properties such as interrupts. -device vfio-platform,host=5b230000.clock-controller\n-device vfio-platform,host=5b040000.ethernet\n-device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running Platform Device Passthrough in QEMU","id":"270","title":"Running Platform Device Passthrough in QEMU"},"271":{"body":"Before starting the virtual machine with passed-through devices, we need to define our virtual machine device tree. One way of gaining a template for our QEMU device tree is by starting our QEMU instance and requesting a dump of its device tree in the DTB format as below. DTB is a binary format of the device tree so we also need to use the command line tool device tree compiler dtc to convert the binary device tree to a more human-friendly device tree source format. Converting the device tree to source format may give a few warnings of missing or unrecognized properties and such but that is normal. qemu-system-aarch64 \\ -M virt,gic-version=host,dumpdtb=virt.dtb -enable-kvm -nographic # Convert binary to source device tree format\ndtc -I dtb -O dts virt.dtb > virt.dts This will provide a \" virt.dts \" file which can be used as a base for adding our passedthrough devices. The U-Boot device tree may change based on the U-Boot version, so the guest device tree may need some maintenance every now and then.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Guest Setup","id":"271","title":"Guest Setup"},"272":{"body":"The platform devices which are going to get passed through should be added to the QEMU device tree platform bus section. In this case, the main devices are fec1 , enet0_lpcg and lsio_mu2 . At the time of writing, the platform bus address in QEMU is \" c000000 \" but that can be changed within the following code (needs recompiling QEMU) or it might change during some the QEMU code update. platform@c000000 { compatible = \"qemu,platform\\0simple-bus\"; interrupt-parent = <0x8001>; #address-cells = <0x02>; #size-cells = <0x02>; /* Devices register remapping // ranges = <0xc000000 0x00 0xc000000 0x2000000>; ranges = <0x00 0x5b230000 0x00 0xc000000 0x00 0x10000>, <0x00 0x5b040000 0x00 0xc010000 0x00 0x10000>, <0x00 0x5d1d0000 0x00 0xc020000 0x00 0x10000>; /* * Fec1 device configuration * Mostly the same that was set in the original host device configuration * The original interrupts can be left here as reference but they are updated at the end of config */ fec1: ethernet@5b040000 { reg = <0x00 0x5b040000 0x00 0x10000>; interrupts = , , , ; clocks = <&enet0_lpcg 4>, <&enet0_lpcg 2>, <&enet0_lpcg 3>, <&enet0_lpcg 0>, <&enet0_lpcg 1>; clock-names = \"ipg\", \"ahb\", \"enet_clk_ref\", \"ptp\", \"enet_2x_txclk\"; assigned-clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_CLKDIV>; assigned-clock-rates = <250000000>, <125000000>; fsl,num-tx-queues=<1>; fsl,num-rx-queues=<1>; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Fec1 devices clock controller device configuration * Mostly the same that was set in the original host device configuration * The actual clocks are nor configured so those need to be added to guest */ enet0_lpcg: clock-controller@5b230000 { compatible = \"fsl,imx8qxp-lpcg\"; reg = <0x00 0x5b230000 0x00 0x10000>; #clock-cells = <1>; clocks = <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&clk IMX_SC_R_ENET_0 IMX_SC_PM_CLK_PER>, <&conn_axi_clk>, <&clk IMX_SC_R_ENET_0 IMX_SC_C_TXCLK>, <&conn_ipg_clk>, <&conn_ipg_clk>; bit-offset = <0 4 8 12 16 20>; clock-output-names = \"enet0_lpcg_timer_clk\", \"enet0_lpcg_txc_sampling_clk\", \"enet0_lpcg_ahb_clk\", \"enet0_lpcg_rgmii_txc_clk\", \"enet0_lpcg_ipg_clk\", \"enet0_lpcg_ipg_s_clk\"; power-domains = <&pd IMX_SC_R_ENET_0>; status = \"okay\"; }; /* * Mailbox device for Fec1 (and SCU) * The host needs its own Mailbox (lsio_mu1 by default) and SCU * The original interrupt can be left here as reference but that is updated at the end of config */ lsio_mu2: mailbox@5d1d0000 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; reg = <0x00 0x5d1d0000 0x00 0x10000>; interrupts = ; #mbox-cells = <0x02>; status = \"okay\"; };\n}; The actual devices which were passed through may have some dependencies (such as clocks) which also need to be configured in the guest for the main devices to work properly. In most cases, they can be just copy-pasted from the original host configuration with a few minor alterations. Required dependencies need a bit of manual labor and depend on case to case. The main key is to go through the whole original device tree and list out device node names that are used by the passedthrough devices. This may require several passes as the dependencies may also contain some dependencies of their own. On top of the requirements, it is good also to check if the passedthrough devices are used by some other devices. Some devices may be used through a controller, such as lsio_mu2 is used by the main system control unit scu . In this case, the dependencies consist of several clock devices and their controller and also the i.MX 8 system control unit SCU device with its internals. The assisting devices can be added just before the start \" platform@c000000 \" bus configuration section: /** * Several clocks and a regulator copied from original host config. **/\nclk_dummy: clock-dummy { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <0>; clock-output-names = \"clk_dummy\";\n}; xtal32k: clock-xtal32k { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <32768>; clock-output-names = \"xtal_32KHz\";\n}; xtal24m: clock-xtal24m { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <24000000>; clock-output-names = \"xtal_24MHz\";\n}; reg_fec2_supply: fec2_nvcc { compatible = \"regulator-fixed\"; regulator-name = \"fec2_nvcc\"; regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>;\n//\tgpio = <&max7322 0 GPIO_ACTIVE_HIGH>; enable-active-high; status = \"okay\";\n}; conn_axi_clk: clock-conn-axi { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <333333333>; clock-output-names = \"conn_axi_clk\";\n}; conn_ahb_clk: clock-conn-ahb { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <166666666>; clock-output-names = \"conn_ahb_clk\";\n}; conn_ipg_clk: clock-conn-ipg { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <83333333>; clock-output-names = \"conn_ipg_clk\";\n}; conn_bch_clk: clock-conn-bch { compatible = \"fixed-clock\"; #clock-cells = <0>; clock-frequency = <400000000>; clock-output-names = \"conn_bch_clk\";\n}; /** * imx8 SCU device and its content with changed to use \"lsio_mu2\" mailbox * The original scu used lsio_mu1 so we need to use one of lsio_mu2 to lsio_mu4 **/\nscu { compatible = \"fsl,imx-scu\"; mbox-names = \"tx0\", \"rx0\", \"gip3\"; mboxes = <&lsio_mu2 0 0 &lsio_mu2 1 0 &lsio_mu2 3 3>; pd: imx8qx-pd { compatible = \"fsl,imx8qm-scu-pd\", \"fsl,scu-pd\"; #power-domain-cells = <1>; status = \"okay\"; wakeup-irq = <235 236 237 258 262 267 271 345 346 347 348>; }; clk: clock-controller { compatible = \"fsl,imx8qm-clk\", \"fsl,scu-clk\"; #clock-cells = <2>; clocks = <&xtal32k &xtal24m>; clock-names = \"xtal_32KHz\", \"xtal_24Mhz\"; }; iomuxc: pinctrl { compatible = \"fsl,imx8qm-iomuxc\"; }; ocotp: imx8qm-ocotp { compatible = \"fsl,imx8qm-scu-ocotp\"; #address-cells = <1>; #size-cells = <1>; read-only; fec_mac0: mac@1c4 { reg = <0x1c4 6>; }; fec_mac1: mac@1c6 { reg = <0x1c6 6>; }; }; rtc: rtc { compatible = \"fsl,imx8qm-sc-rtc\"; }; watchdog { compatible = \"fsl,imx8qm-sc-wdt\", \"fsl,imx-sc-wdt\"; timeout-sec = <60>; }; tsens: thermal-sensor { compatible = \"fsl,imx-sc-thermal\"; tsens-num = <6>; #thermal-sensor-cells = <1>; };\n}; /** * And the platform bus that was done earlier would start from here.. */\nplatform@c000000 { ...\n};","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Adding Devices to Guest","id":"272","title":"Adding Devices to Guest"},"273":{"body":"Now we have most of the actual devices setup. Some final modifications for individual devices can be done at the end of the guest device tree configuration. These can be done outside the main node, as we just modify some node properties which are already defined. /** * For fec1 we need to update the interrupts to match the ones used by guest pass-through. * Most of the configuration is exactly the same that was set original imx8 config * Qemu starts its pass-through interrupts at 0x70 so lets change that * It is not strictly required to remove the possible iommus property but lets do that anyway */\n&fec1 { compatible = \"fsl,imx8qm-fec\", \"fsl,imx6sx-fec\"; interrupts = , , , ; /delete-property/ iommus; pinctrl-names = \"default\"; pinctrl-0 = <&pinctrl_fec1>; phy-mode = \"rgmii-txid\"; phy-handle = <ðphy0>; fsl,magic-packet; nvmem-cells = <&fec_mac0>; nvmem-cell-names = \"mac-address\"; status = \"okay\"; mdio { #address-cells = <1>; #size-cells = <0>; ethphy0: ethernet-phy@0 { compatible = \"ethernet-phy-ieee802.3-c22\"; reg = <0>; at803x,eee-disabled; at803x,vddio-1p8v; qca,disable-smarteee; vddio-supply = <&vddio0>; vddio0: vddio-regulator { regulator-min-microvolt = <1800000>; regulator-max-microvolt = <1800000>; }; }; };\n}; /** * Not much to do for clock controller * Remove the iommus as it is not needed in guest and turn the device on */\n&enet0_lpcg { status = \"okay\"; /delete-property/ iommus;\n}; /** * Same for our mailbox * Update the interrupts to match next available interrupt in Qemu */\n&lsio_mu2 { compatible = \"fsl,imx8-mu-scu\", \"fsl,imx8qm-mu\", \"fsl,imx6sx-mu\"; interrupts = ; /delete-property/ iommus; status = \"okay\";\n}; /** * In the host devicetree we had some pads which were transferred to guest. * There can be found in the original imx8 hosts config. **/\n&iomuxc { pinctrl-names = \"default\"; status = \"okay\"; pinctrl_fec1: fec1grp { fsl,pins = < IMX8QM_COMP_CTL_GPIO_1V8_3V3_ENET_ENETA_PAD 0x000014a0 IMX8QM_ENET0_MDC_CONN_ENET0_MDC 0x06000020 IMX8QM_ENET0_MDIO_CONN_ENET0_MDIO 0x06000020 IMX8QM_ENET0_RGMII_TX_CTL_CONN_ENET0_RGMII_TX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_TXC_CONN_ENET0_RGMII_TXC 0x06000020 IMX8QM_ENET0_RGMII_TXD0_CONN_ENET0_RGMII_TXD0 0x06000020 IMX8QM_ENET0_RGMII_TXD1_CONN_ENET0_RGMII_TXD1 0x06000020 IMX8QM_ENET0_RGMII_TXD2_CONN_ENET0_RGMII_TXD2 0x06000020 IMX8QM_ENET0_RGMII_TXD3_CONN_ENET0_RGMII_TXD3 0x06000020 IMX8QM_ENET0_RGMII_RXC_CONN_ENET0_RGMII_RXC 0x06000020 IMX8QM_ENET0_RGMII_RX_CTL_CONN_ENET0_RGMII_RX_CTL\t0x06000020 IMX8QM_ENET0_RGMII_RXD0_CONN_ENET0_RGMII_RXD0 0x06000020 IMX8QM_ENET0_RGMII_RXD1_CONN_ENET0_RGMII_RXD1 0x06000020 IMX8QM_ENET0_RGMII_RXD2_CONN_ENET0_RGMII_RXD2 0x06000020 IMX8QM_ENET0_RGMII_RXD3_CONN_ENET0_RGMII_RXD3 0x06000020 >; };\n}; With our additional devices also some headers and definitions need to be included at the beginning of the device tree. These additions can be found also from the original i.MX 8 device tree files. See the full device tree below for reference.","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Some Final Touches for Guest Devices","id":"273","title":"Some Final Touches for Guest Devices"},"274":{"body":"The device trees need to be compiled within the Linux kernel source directory. They depend on some kernel device tree headers and in the host device case—other device tree source files. Full host device tree: imx8qm-mek_conn-host.dts Full guest device tree: imx8qm-mek_conn-guest.dts","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling the Device Tree Source to Binary Form","id":"274","title":"Compiling the Device Tree Source to Binary Form"},"275":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-guest.dts imx8qm-mek_conn-guest.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-guest.preprocessed -o imx8qm-mek_conn-guest.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Guest","id":"275","title":"Compiling for Guest"},"276":{"body":"cpp -nostdinc -I include -I arch -undef -x assembler-with-cpp \\ arch/arm64/boot/dts/freescale/imx8qm-mek_conn-host.dts imx8qm-mek_conn-host.dts.preprocessed; \\ dtc -I dts -O dtb -p 0x1000 imx8qm-mek_conn-host.preprocessed -o imx8qm-mek_conn-host.dtb","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Compiling for Host","id":"276","title":"Compiling for Host"},"277":{"body":"To get passthrough working, i.MX 8 QM needs to be booted using our freshly built hosts imx8qm-mek_conn-host.dtb device tree file. When the system has booted, we need to set up the passedthrough devices for the VFIO driver and start QEMU with devices passed through. First, the devices need to be setup for VFIO: echo vfio-platform > /sys/bus/platform/devices/5d1d0000.mailbox/driver_override\necho 5d1d0000.mailbox > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b040000.ethernet/driver_override\necho 5b040000.ethernet > /sys/bus/platform/drivers/vfio-platform/bind echo vfio-platform > /sys/bus/platform/devices/5b230000.clock-controller/driver_override\necho 5b230000.clock-controller > /sys/bus/platform/drivers/vfio-platform/bind After, QEMU can be started with our devices over the devices. This is just as an example. It may require a bit of change in other environments. In this example, the guest kernel image—ext2 rootfs and guest device tree—all use the same filename prefix imx8qm-mek_conn-guest . qemu-system-aarch64 \\ -M virt,gic-version=host -enable-kvm \\ -cpu host \\ -m 512M \\ -kernel \"imx8qm-mek_conn-guest.Image\" \\ -drive file=\"imx8qm-mek_conn-guest.ext2\",if=virtio,format=raw -dtb \"imx8qm-mek_conn-guest.dtb\" \\ -nographic \\ -append \"loglevel=7 rootwait root=/dev/vda console=ttyAMA0 earlycon earlyprintk\" \\ -device vfio-platform,host=5b230000.clock-controller \\ -device vfio-platform,host=5b040000.ethernet \\ -device vfio-platform,host=5d1d0000.mailbox","breadcrumbs":"Research Notes » i.MX 8QM Ethernet Passthrough » Running QEMU with Passthrough Platform Devices","id":"277","title":"Running QEMU with Passthrough Platform Devices"},"278":{"body":"A hardened system installation covers multiple phases from establishing trust to the installation process. This section describes developing mechanisms to set up a Ghaf system in target hardware.","breadcrumbs":"Research Notes » System Installation » Approaches to Ghaf System Installation","id":"278","title":"Approaches to Ghaf System Installation"},"279":{"body":"The initial Ghaf installation approach to using Ghaf in development and demos is to build target system raw images (img) as binary disk images. The process results in an image based on modular and configurable declarations that are repeatably built using NixOS tooling. In practice, Ghaf disk images are built with: nix build .#package.. which results in disk image: result\\nixos.img For information on how to build and run a Ghaf image, see Build & Run for details. The initial Ghaf installation approach differed from the NixOS installation approach: The key reason in Ghaf was practical: initially, it is simple to write a specific target disk image to a USB boot media or target HW internal persistent media. The NixOS approach is more generic: supporting as many devices as possible. Similar to other Linux distributions like Ubuntu or Fedora. The development objective of Ghaf is to support a portable secure system that results in a target device-specific small trusted computing base. In practice, this means that Ghaf installations are by design not meant to support a generic Linux kernel with about all the device drivers (modules) out there like Ubuntu or Fedora. Ghaf reference installations are designed and to be developed to support particular (declaratively) hardened host and guest kernels with limited drivers only. The Ghaf approach significantly reduces the size of the trusted computing base as the unneeded modules and kernel parts are not taken into use.","breadcrumbs":"Research Notes » System Installation » Ghaf Initial Approach","id":"279","title":"Ghaf Initial Approach"},"28":{"body":"Ghaf host in release mode has no nix tooling to work with the /nix/store. The /nix/store is only used to build the host system. In release mode, no modifications to nix store are possible. Changes are handled with update (MH08). Ghaf host in debug mode must support nix tooling via read-writable host filesystem. This must be taken into account in build-time nix module declarations.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » No nix toolings (MH06)","id":"28","title":"No nix toolings (MH06)"},"280":{"body":"NixOS installation is well documented and thus is only summarized here. The key in the NixOS approach is to have a generic, bootable installation media (iso) like any other Linux distribution. As the NixOS installer aims to support as many devices as possible: the installer has a generic kernel (per hardware architecture), hardware recognition script, and generic requirements for system partitioning (boot and root partitions). Much of the NixOS installation can be modified interactively during installation either from a graphical installer, manually, or even declaratively. After installation, the whole system can be managed fully declaratively and purely (flakes) which is a novel approach compared to other Linux distributions. In practice, you can store your target system declaration in version control (git) to both maintain the system setup and back it up. Ghaf uses this approach for reference system declarations with flake.nix . NixOS usage is popular in cloud system installations. However many cloud providers do not provide NixOS as an option and bare-metal cloud is always not an alternative. For this need, approaches like nixos-anywhere have been developed. Using a smart approach with kexec , one can completely replace cloud provider default Linux options.","breadcrumbs":"Research Notes » System Installation » NixOS Approach","id":"280","title":"NixOS Approach"},"281":{"body":"Ghaf introduced a modular structure for an interactive installer . The initial Ghaf reference installer still uses a raw disk image per target device. In practice, it just writes the raw disk image to the target device's internal persistent memory, for example, NVMe. The key idea with the modular interactive Ghaf installer is to enable customization of the installer per target device needs and at the same time support further development of the Ghaf graphical installer. The challenge with the interactive installer is to determine the combination of configurable options, to develop, and test them. Given the Ghaf approach of target device-specific installation Ghaf Initial Approach , the requirement for Ghaf a device-specific installer is challenging. Ghaf installer would have to either: embed the device-specific installation raw disk image in the installer (current way) which results in a huge installer image dynamically build the device-specific installation according to the user's interactive selection download a pre-built device-specific raw disk image which could result in a huge number of configurations use some combination of generic and specific (a compromise) None of which seem feasible in the long run. None of these are either Ghaf's objectives in the long run either. But how to achieve a device-specific secure system installation without getting lost in the generic Linux distro requirements?","breadcrumbs":"Research Notes » System Installation » Modular Interactive","id":"281","title":"Modular Interactive"},"282":{"body":"Now that we already have version control reference device-specific secure system declarations, the question is if we can transfer those into the device installations without requiring a user too many actions that make the installation unnecessarily difficult to implement. This alone is not a novel idea. Automatic Original Equipment Manufacturer (OEM) installers have been doing this for long. Those are often not declarative but rather scripted guidance to answer questions in generic installers. The target device-specific disk partitioning has been left to the user in manual installation. Traditionally in generic installers, it is also risk management. A user typically might not want her device disk wiped out without questions asked. Of course, we could let the user know what is about to happen and ask the user for agreement in confirmation before we install it fully automatically. Declarative configurations can handle user preferences. If one wants to change something, it can be changed in the declarations, stored, and shared via version control. Also including the declarative partitioning that has been tested from within the Ghaf installer. So, according to the We don't need NixOS cloud images anymore article, one can think that a secure, virtualized edge device could be handled similarly to cloud images. A simple (even secure) boot and installation supporting media could provide secure network access to the installation target device and then deploy the specific installation from declarations. In practice, a target device can be booted with a USB media (or even network boot) that provides SSH access to the device using an authorized key. After that, one command can be used to install specific secure system configuration automatically. This is used in Ghaf updates in development with nixos-rebuild ... switch and was also tested with new (clean) systems .","breadcrumbs":"Research Notes » System Installation » Declarative, Non-Interactive Installation","id":"282","title":"Declarative, Non-Interactive Installation"},"283":{"body":"As of now, the proposed approach declarative non-interactive approach using the example tooling depends on Internet access. Secure system installation will require steps additional to functional system setup. For example, establishing trust and setting up secrets. Many guidelines instruct to setup secrets in an air-gapped environment (without network access) for a reason. Above mentioned tools do not yet support offline installation .","breadcrumbs":"Research Notes » System Installation » Discussion","id":"283","title":"Discussion"},"29":{"body":"Ghaf host release mode kernel configuration must be minimal and hardened in the limits of HW vendor BSP. Kernel configuration per device is to be further analyzed iteratively. Limitations are to be documented per target device kernel configurations and HW support for virtualization.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Minimal defconfig (MH07)","id":"29","title":"Minimal defconfig (MH07)"},"3":{"body":"The design principles influencing the architecture of the Ghaf Platform are the following: Edge security The Ghaf security architecture under development by SSRC aims to provide an understandable yet comprehensive view of security controls in the Platform so that vendors can make informed decisions and adopt the Platform for their use cases. The security architecture and subsequent research will be published by SSRC in a series of technical white papers. Zero trust The Ghaf Platform aims to apply the general security principles of zero trust within the software architecture and to act as an enabler for ZTA for edge devices within organizations. Trusted computing base The general principle for establishing the trusted Ghaf Platform code base is to rely on audited software and proven security modules while carefully evaluating and integrating new concepts. The modularized platform not only simplifies the integration of additional security measures but also facilitates the integration of hardware security features. Leveraging and contributing to open-source projects is not only a cornerstone for the Platform components' maintainability but also for the toolchain to increase transparency and auditability. By providing a hardened code base for the hypervisor and OS for the various VMs in the architecture, the Ghaf Platform leverages security benefits across all modules. Configurable, declarative and reproducible","breadcrumbs":"About Ghaf » Design Principles","id":"3","title":"Design Principles"},"30":{"body":"Ghaf host release mode filesystem updates are to be implemented using A/B update mechanism from adminvm. This will be designed and covered in a separate ADR.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Update via adminvm (MH08)","id":"30","title":"Update via adminvm (MH08)"},"31":{"body":"Ghaf minimal host in release mode must be implemented with read-only, integrity checked (dm-verity) filesystem.","breadcrumbs":"Architecture » Architecture Decision Records » Minimal Host » Read-only filesystem (MH09)","id":"31","title":"Read-only filesystem (MH09)"},"32":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » netvm—Networking Virtual Machine","id":"32","title":"netvm—Networking Virtual Machine"},"33":{"body":"Proposed, partially implemented for development and testing. netvm reference declaration is available at netvm/default.nix .","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Status","id":"33","title":"Status"},"34":{"body":"Ghaf high-level design target is to secure a monolithic OS by modularizing the OS to networked VMs. The key security target is to not expose the trusted host directly to the Internet. This isolates the attack surface from the Internet to netvm . The following context diagram illustrates development and secure scenarios: Scope! Left : An insecure development scenario. The host is directly connected to the Internet, and the network is bridged from the host to other parts of the system. Right : A secure scenario. The network is passed through to netvm and routed to other parts of the system.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Context","id":"34","title":"Context"},"35":{"body":"The development scenario simplifies the target system network access and configuration. This ADR proposes the development netvm configuration is maintained to support system development. The secure scenario is proposed to be implemented with the use of passthrough to DMA and remap the host physical network interface card (PHY NIC) to netvm . This cannot be generalized for all hardware targets as it requires: Low-level device tree configuration for bootloader and host (at least on platform NIC). VMM host user space NIC bus mapping from the host to netvm . Native network interface driver (not virtual) in netvm . Native driver is bound the vendor BSP supported kernel version. These depend on the hardware setup. The proposed target setup is that the passthrough network device(s) are implemented as declarative nix-modules for easier user hardware-specific configuration. In practice, a user may configure the declaration of a PCI or USB network card that is available to the available hardware setup. netvm will provide: dynamic network configuration: A DHCP server for netvm to provide IP addresses for the other parts of the system, both static and dynamic. Routing from netvm to the Internet and/or inter VM. For common reference hardware with platform NIC, the configured modules for network interface passthrough are provided. For more information, see i.MX 8QM Ethernet Passthrough . Details of other network components, such as default firewall rules, DHCP (static and dynamic client addresses), routing, reverse proxies and security monitoring are to be described in their respective architecture decision records. In this context, these are illustrated in the context diagram on the right side of the netvm network interface driver.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Decision","id":"35","title":"Decision"},"36":{"body":"Isolating the attack surface from the host to networking-specific guest VM makes it easier to protect the critical host system from compromise. The isolation also makes it easier to deploy further security, such as a zero trust policy engine or intrusion detection system (IDS). Isolation makes configuration and comprehension of the system more difficult.","breadcrumbs":"Architecture » Architecture Decision Records » Networking VM » Consequences","id":"36","title":"Consequences"},"37":{"body":"","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » rust-vmm—Bus Passthrough Support for Rust VMMs","id":"37","title":"rust-vmm—Bus Passthrough Support for Rust VMMs"},"38":{"body":"Proposed, work in progress.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Status","id":"38","title":"Status"},"39":{"body":"This ADR is a work-in-progress note for Ghaf bus passthrough implementation that will support rust-vmm-based hypervisors. rust-vmm is an open-source project that empowers the community to build custom Virtual Machine Monitors (VMMs) and hypervisors. For more information, see https://github.com/rust-vmm/community . It is crucial to have bus devices passthrough support for ARM-based hardware as the bus is mainly used to connect the peripherals. Nowadays, the only hypervisor with some support for Platform bus is QEMU but the code is dated 2013 and not frequently used. On the other hand, one of the target hardware devices for Ghaf is NVIDIA Orin with an ARM core. To achieve Ghaf's security and hardware isolation goals, devices should support passthrough mode. Production-ready rust-vmm-based hypervisors ( crosvm , Firecracker , Cloud Hypervisor ) do not have support for Platform bus.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Context","id":"39","title":"Context"},"4":{"body":"As software supply chain security becomes more and more relevant to product security, it is necessary to provide mechanisms to assert reproducible builds, with a transparent chain from source code over the build environment to the final binaries. Such a system allows faster analysis of not only software bugs but also security vulnerabilities and their impact on a product without the need for extensive analysis. This approach further reduces the efforts required for patching and allows mechanisms for safe fallbacks to secure states. For more information on Ghaf supply chain security, see Supply Chain Security .","breadcrumbs":"About Ghaf » Build System and Supply Chain","id":"4","title":"Build System and Supply Chain"},"40":{"body":"Implementation of Platform bus passthrough is a base framework for Rust VMM. This will make it possible to use this mode within production-ready rust-vmm-based hypervisors. The main candidate here is crosvm. The necessity to support Platform bus in other hypervisors is subject to discussion. Technically, the Platform bus is rather a simple bus: it manages memory mapping and interrupts. Information about devices is not dynamic but is read from the device tree during the boot stage. The current status: Required Components Status of Readiness Host kernel side: VFIO drivers (to substitute real driver in host kernel) -/+ Host support for device trees + Guest kernel side: Device drivers for passthrough devices + Guest support for device trees + Rust VMM side: Bus support Needs to be developed. VMM support for device trees Rudimental, needs improvement.","breadcrumbs":"Architecture » Architecture Decision Records » Platform Bus for Rust VMM » Decision","id":"40","title":"Decision"},"41":{"body":"This section describes how securing Ghaf by reducing its attack surface—hardening—is done.","breadcrumbs":"Architecture » Hardening » Hardening","id":"41","title":"Hardening"},"42":{"body":"Ghaf has two types of kernels: host and guest. Hardening of these kernels varies in terms of hardware support and functionality required by the guest kernel in question. Within this context, the kernel always refers to the Linux operating system kernel.","breadcrumbs":"Architecture » Hardening » Kernel","id":"42","title":"Kernel"},"43":{"body":"NixOS provides several mechanisms to customize the kernel. The main methods are: Declaring kernel command line parameters : usage in Ghaf . Declaring kernel custom configuration : usage in Ghaf . Example of entering the kernel development shell to customize the .config and build it: ~/ghaf $ nix develop .#devShells.x86_64-linux.kernel-x86\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ cp ../modules/host/ghaf_host_hardened_baseline .config\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make menuconfig\n...\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ make -j$(nproc)\n...\nKernel: arch/x86/boot/bzImage Booting the built kernel with QEMU: [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ qemu-system-x86_64 -kernel arch/x86/boot/bzImage Validating with kernel hardening checker : [ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline\n[+] Kconfig file to check: ../modules/host/ghaf_host_hardened_baseline\n[+] Detected microarchitecture: X86_64\n[+] Detected kernel version: 6.6\n[+] Detected compiler: GCC 120300\n...\n[+] Config check is finished: 'OK' - 188 / 'FAIL' - 5\n[ghaf-kernel-devshell:~/ghaf/linux-6.6.5]$ kernel-hardening-checker -c ../modules/host/ghaf_host_hardened_baseline|grep 'FAIL: '\nCONFIG_CFI_CLANG |kconfig| y | kspp | self_protection | FAIL: is not found\nCONFIG_CFI_PERMISSIVE |kconfig| is not set | kspp | self_protection | FAIL: CONFIG_CFI_CLANG is not \"y\"\nCONFIG_MODULES |kconfig| is not set | kspp |cut_attack_surface| FAIL: \"y\"\nCONFIG_FB |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"\nCONFIG_VT |kconfig| is not set |maintainer|cut_attack_surface| FAIL: \"y\"","breadcrumbs":"Architecture » Hardening » Kernel Hardening Process","id":"43","title":"Kernel Hardening Process"},"44":{"body":"The host kernel runs on bare metal. The kernel is provided either with Linux upstream (x86_64) or with vendor BSP. The default Ghaf host kernel on x86_64 is maintained by Ghaf upstream package sources nixpkgs or Nix-packaged hardware-specific BSP (for example, NVIDIA Jetson-family of devices). x86-64-linux The host kernel hardening is based on Linux make tinyconfig. The default tinyconfig fails to assertions on NixOS without modifications. Assertions are fixed in ghaf_host_hardened_baseline Linux configuration under Ghaf modules/host/. In addition, NixOS (Ghaf baseline dependency) requires several kernel modules that are added to the config or ignored with allowMissing = true. As of now, the kernel builds and early boots on Lenovo X1.","breadcrumbs":"Architecture » Hardening » Host Kernel","id":"44","title":"Host Kernel"},"45":{"body":"This section describes Secure Boot and how to create secure keys. The reader is expected to know the fundamentals of UEFI and have a basic understanding of Secure Boot UEFI specification .","breadcrumbs":"Architecture » Secure Boot » Secure Boot","id":"45","title":"Secure Boot"},"46":{"body":"Secure Boot can be enabled on NixOS using Lanzaboote . Secure Boot is a UEFI feature that only allows trusted operating systems to boot. Lanzaboote has two components: lzbt and stub. lzbt signs and installs the boot files on the ESP. stub is a UEFI application that loads the kernel and initrd from the ESP.","breadcrumbs":"Architecture » Secure Boot » Enabling Secure Boot","id":"46","title":"Enabling Secure Boot"},"47":{"body":"Secure Boot keys can be created with sbctl , a Secure Boot Manager. sbctl is available in Nixpkgs as pkgs.sbctl. After you installed sbctl or entered a Nix shell, use the following command to create your Secure Boot keys: $ sudo sbctl create-keys Using \"sudo sbctl create-keys\" command user can create secure keys on the trusted system.","breadcrumbs":"Architecture » Secure Boot » Creating Secure Boot Keys","id":"47","title":"Creating Secure Boot Keys"},"48":{"body":"For demonstration purposes, we use pre-generated secure keys which are unsecure as whoever has keys can break into the system. Currently, the Secure Boot feature is enabled in debug builds only, since secure key creation requires sudo rights.","breadcrumbs":"Architecture » Secure Boot » Current Implementation","id":"48","title":"Current Implementation"},"49":{"body":"For enabling secure boot instructions, see the Part 2: Enabling Secure Boot section of the NixOS Secure Boot Quick Start Guide. Make sure your Secure Boot is enabled from the BIOS menu. Once you boot your system with Secure Boot enabled, enroll keys with the following command: $ sudo sbctl enroll-keys --microsoft Reboot the system to activate Secure Boot in the user mode: $ bootctl status\nSystem: Firmware: UEFI 2.70 (Lenovo 0.4720) Firmware Arch: x64 Secure Boot: enabled (user) TPM2 Support: yes Boot into FW: supported","breadcrumbs":"Architecture » Secure Boot » Secure Boot Verification","id":"49","title":"Secure Boot Verification"},"5":{"body":"The vision for the Ghaf platform is to create a virtualized, scalable reference platform that enables the building of secure products leveraging trusted, reusable, and portable software for edge devices. For more information on reference implementation for several devices, see Reference Implementations . Ghaf demo desktop and applications are illustrated in the screen capture below: Ghaf demo desktop and application","breadcrumbs":"Features » Features","id":"5","title":"Features"},"50":{"body":"The Ghaf stack includes a host with VMs. The host consists of two layers—OS kernel with hypervisor and OS user space—and provides virtualization for the guest VMs: system VMs, application or service VMs, or guest OSs. The stack layers and top-level components are illustrated in the following diagram. Stack! At the lowest levels of the stack lay hardware vendor-provided hardware, firmware, and board support package. The Ghaf project aims to use the vendor-provided components either as they are or configure them as supported by the vendor. Configuration may include, for example, host kernel hardening and including only selected components from the vendor BSP. The Ghaf project provides the reference minimal host with user space as defined in the Minimal Host .","breadcrumbs":"Architecture » Stack » Stack","id":"50","title":"Stack"},"51":{"body":"Ghaf provides reference system VMs for networking, GUI and storage. System VM Defined Implementation Status Networking Yes Partial GUI (optional) No Reference Wayland on host, to be isolated to VM GUI VM is considered optional as it may not be needed in some headless configurations.","breadcrumbs":"Architecture » Stack » System VMs","id":"51","title":"System VMs"},"52":{"body":"Ghaf should provide reference application VMs and service VMs that isolate respective software from the host. Depending on the use case requirements, these VMs will communicate with other parts of the system over networking and shared memory. As an example, application VMs (Wayland client) will communicate with the GUI VM (Wayland compositor) across the VM boundaries. This is called cross-domain Wayland. Another, already partially implemented area is networking VM that will securely provide Internet access to other VMs.","breadcrumbs":"Architecture » Stack » Application or Service VM","id":"52","title":"Application or Service VM"},"53":{"body":"Ghaf aims to support users with guest OSs such as other Linux distributions (Ubuntu, Fedora, etc.), Windows, and Android. Some of these have been already prototyped.","breadcrumbs":"Architecture » Stack » Guest OSs","id":"53","title":"Guest OSs"},"54":{"body":"Improvements to code and documentation are welcome! We would love to get contributions from you. For more information, see CONTRIBUTING.md . Some things that will increase the chance that your pull request is accepted faster: Spelling tools usage. Following our Style Guide . Writing a good commit message .","breadcrumbs":"Contributing » Contribution Guidelines","id":"54","title":"Contribution Guidelines"},"55":{"body":"Our hardened OS targets are build configurations based on NixOS. The canonical URL for the upstream Nix git repository is: https://github.com/NixOS . Build configurations define our dependencies and configuration changes to packages and build mechanisms of NixOS. If you want to try Ghaf, see Build and Run .","breadcrumbs":"Reference Implementations » Reference Implementations","id":"55","title":"Reference Implementations"},"56":{"body":"A build configuration is a target to build the hardened OS for a particular hardware device. Most packages used in a build configuration come from nixpkgs—NixOS Packages collection . The upstream first approach means we aim the fix issues by contributing to nixpkgs. At the same time, we get the maintenance support of NixOS community and the benefits of the Nix language on how to build packages and track the origins of packages in the software supply chain security. For more information, see Supply Chain Security . NixOS, a Linux OS distribution packaged with Nix, provides us with: generic hardware architecture support (x86-64 and AArch64) declarative and modular mechanism to describe the system Nix packaging language mechanisms: to extend and change packages with overlays to override packages Even when unmodified upstream is often preferred, even ideal, to ensure timely security updates from upstream—customizations are sometimes required.","breadcrumbs":"Reference Implementations » Approach","id":"56","title":"Approach"},"57":{"body":"To support a reference board without a vendor board support package (BSP)—bootloader, kernel, device drivers—is often not feasible. With this approach, we can overlay the generic NixOS Linux kernel with the vendor kernel and add a vendor bootloader to build a target image. Often the vendor BSPs are also open source but sometimes contain unfree binary blobs from the vendor's hardware. Those are handled by allowing unfree - if the user agrees with the end-user license agreement (EULA). If not, unfree support can be dropped along with that part of the BSP support. The same goes with the architectural variants as headless devices or end-user devices differ in terms what kind of virtual machines (VM) they contain. The user needs graphics architecture and VM support for the user interface (UI) whereas a headless device is more like a small server without the UI.","breadcrumbs":"Reference Implementations » Example","id":"57","title":"Example"},"58":{"body":"Development Build and Run Installer Cross-Compilation Creating Application VM Ghaf as Library: Templates Example Project Modules Options","breadcrumbs":"Reference Implementations » In This Chapter","id":"58","title":"In This Chapter"},"59":{"body":"Ghaf Framework is free software, currently under active development. The scope of target support is updated with development progress: Build and Run Running Remote Build on NixOS Installer Cross-Compilation Creating Application VM labwc Desktop Environment Once you are up and running, you can participate in the collaborative development process by building a development build with additional options. For example, with the development username and password that are defined in accounts.nix . If you authorize your development SSH keys in the ssh.nix module and rebuild Ghaf for your target device, you can use nixos-rebuild switch to quickly deploy your configuration changes to the target device over the network using SSH. For example: nixos-rebuild --flake .#nvidia-jetson-orin-agx-debug --target-host root@ --fast switch\n...\nnixos-rebuild --flake .#lenovo-x1-carbon-gen11-debug --target-host root@ --fast switch\n... With the -debug targets, the debug ethernet is enabled on host. With Lenovo X1 Carbon, you can connect USB-Ethernet adapter for the debug and development access. Pull requests are the way for contributors to submit code to the Ghaf project. For more information, see Contribution Guidelines .","breadcrumbs":"Reference Implementations » Development » Development","id":"59","title":"Development"},"6":{"body":"✅—integrated and tested in the main branch. No known regression. 🚧—prototyped or work in progress in the development branch. ❌—the feature has known regression or bugs.","breadcrumbs":"Features » Status","id":"6","title":"Status"},"60":{"body":"This tutorial assumes that you already have basic git experience. The canonical URL for the upstream Ghaf git repository is https://github.com/tiiuae/ghaf . To try Ghaf, you can build it from the source. Cross-compilation support is currently under development and not available for the building process.","breadcrumbs":"Reference Implementations » Development » Build and Run » Build and Run","id":"60","title":"Build and Run"},"61":{"body":"First, follow the basic device-independent steps: Clone the git repository https://github.com/tiiuae/ghaf . Ghaf uses a Nix flake approach to build the framework targets, make sure to: Install Nix or full NixOS if needed: https://nixos.org/download.html . Enable flakes: https://nixos.wiki/wiki/Flakes#Enable_flakes . To see all Ghaf-supported outputs, type nix flake show. Set up an AArch64 remote builder: https://nixos.org/manual/nix/stable/advanced-topics/distributed-builds.html . Then you can use one of the following instructions for the supported targets: Device Architecture Instruction Virtual Machine x86_64 Running Ghaf Image for x86 VM (ghaf-host) Generic x86 Сomputer x86_64 Running Ghaf Image for x86 Computer Lenovo X1 Carbon Gen 11 x86_64 Running Ghaf Image for Lenovo X1 NVIDIA Jetson AGX Orin AArch64 Ghaf Image for NVIDIA Jetson Orin AGX NXP i.MX 8QM-MEK AArch64 Building Ghaf Image for NXP i.MX 8QM-MEK MICROCHIP icicle-kit RISCV64 Building Ghaf Image for Microchip Icicle Kit","breadcrumbs":"Reference Implementations » Development » Build and Run » Prerequisites","id":"61","title":"Prerequisites"},"62":{"body":"Before you begin, check device-independent prerequisites . From the ghaf source directory, run the nix run .#packages.x86_64-linux.vm-debug command. This creates ghaf-host.qcow2 copy-on-write overlay disk image in your current directory. If you do unclean shutdown for the QEMU VM, you might get weird errors the next time you boot. Simply removing ghaf-host.qcow2 should be enough. To cleanly shut down the VM, from the menu bar of the QEMU Window, click Machine and then Power Down.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 VM (ghaf-host)","id":"62","title":"Running Ghaf Image for x86 VM (ghaf-host)"},"63":{"body":"Before you begin, check device-independent prerequisites . Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#generic-x86_64-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for x86 Computer","id":"63","title":"Running Ghaf Image for x86 Computer"},"64":{"body":"Lenovo X1 is the reference x86_64 device for the Ghaf project. Do the following: To build the target image, run the command: nix build github:tiiuae/ghaf#lenovo-x1-carbon-gen11-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the computer from the USB media.","breadcrumbs":"Reference Implementations » Development » Build and Run » Running Ghaf Image for Lenovo X1","id":"64","title":"Running Ghaf Image for Lenovo X1"},"65":{"body":"Before you begin: Check device-independent prerequisites . If you use a new device, flash bootloader firmware first. Then you can build and run a Ghaf image . Flashing NVIDIA Jetson Orin AGX Run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug-flash-script It will build the Ghaf image and bootloader firmware, and prepare the flashing script. Give \"yes\" answers to all script questions. The building process takes around 1,5 hours. Set up the following connections: Connect the board to a power supply with a USB-C cable. Connect a Linux laptop to the board with the USB-C cable. Connect the Linux laptop to the board with a Micro-USB cable to use serial interface . For more information on the board's connections details, see the Hardware Layout section of the Jetson AGX Orin Developer Kit User Guide. After the build is completed, put the board in recovery mode. For more information, see the Force Recovery Mode section in the Jetson AGX Orin Developer Kit User Guide. Run the flashing script: sudo ~/result/bin/flash-ghaf-host There is a time-out for this operation, so run the script within one minute after putting the device in recovery mode. If you got the error message \"ERROR: might be timeout in USB write.\": Reboot the device and put it in recovery mode again. Check with the lsusb command if your computer can still recognize the board, and run the flash script again. Restart the device after flashing is done. Building and Running Ghaf Image for NVIDIA Jetson Orin AGX After the latest firmware is flashed , it is possible to use a simplified process by building only the Ghaf disk image and running it from external media: To build the target image, run the command: nix build github:tiiuae/ghaf#nvidia-jetson-orin-agx-debug After the build is completed, prepare a USB boot media with the target image you built: dd if=./result/nixos.img of=/dev/ bs=32M Boot the hardware from the USB media. In the current state of Ghaf, it is a bit tricky to make NVIDIA Jetson Orin AGX boot Ghaf from a USB if the same thing has already been flashed on the boards's eMMC. To succeed, you can change partition labels on eMMC (or optionally wiping everything away by formatting): Log in as a root: sudo su Check the current labels: lsblk -o name,path,fstype,mountpoint,label,size,uuid Change the ext4 partition label: e2label /dev/mmcblk0p1 nixos_emmc Change the vfat partition label: dosfslabel /dev/mmcblk0p2 ESP_EMMC Verify the labels that were changed: lsblk -o name,path,fstype,mountpoint,label,size,uuid After these changes NVIDIA Jetson Orin AGX cannot boot from its internal eMMC. It will boot from the USB device with the correct partition labels.","breadcrumbs":"Reference Implementations » Development » Build and Run » Ghaf Image for NVIDIA Jetson Orin AGX","id":"65","title":"Ghaf Image for NVIDIA Jetson Orin AGX"},"66":{"body":"Before you begin, check device-independent prerequisites . In the case of i.MX8, Ghaf deployment consists of creating a bootable SD card with a first-stage bootloader (Tow-Boot) and USB media with the Ghaf image: To build and flash Tow-Boot bootloader: $ git clone https://github.com/tiiuae/Tow-Boot.git && cd Tow-Boot\n$ nix-build -A imx8qm-mek\n$ sudo dd if=result/ shared.disk-image.img of=/dev/ To build and flash the Ghaf image: Run the nix build .#packages.aarch64-linux.imx8qm-mek-release command. Prepare the USB boot media with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card and USB boot media into the board and switch the power on.","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for NXP i.MX 8QM-MEK","id":"66","title":"Building Ghaf Image for NXP i.MX 8QM-MEK"},"67":{"body":"Before you begin: Check device-independent prerequisites . Make sure HSS version 0.99.35-v2023.02 is programmed in your board eNVM. The version can be seen in the pre-bootloader log. Check the video guide to build HSS and program the eNVM: How to build HSS and program the eNVM? In the case of the Icicle Kit, Ghaf deployment consists of creating an SD image with U-Boot and Linux kernel from Microchip, and Ghaf-based NixOS rootfs: Build a Ghaf SD image: a. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-release command to release the image. b. Run the nix build .#packages.riscv64-linux.microchip-icicle-kit-debug command to debug the image. Flash the Ghaf SD image: If you want to use a SD card: Prepare the SD card with the target HW image you built: dd if=./result/nixos.img of=/dev/ bs=32M. Insert an SD card into the board and switch the power on. If you want to use the onboard MMC: You can directly flash a NixOS image to onboard an MMC card: dd if=./result/nixos.img of=/dev/ bs=32M. For more information on how to access the MMC card as a USB disk, see MPFS Icicle Kit User Guide .","breadcrumbs":"Reference Implementations » Development » Build and Run » Building Ghaf Image for Microchip Icicle Kit","id":"67","title":"Building Ghaf Image for Microchip Icicle Kit"},"68":{"body":"To set up a remote build on NixOS: Identify required SSH keys for remote SSH connection. Set up configurations. If you hit an issue, check Troubleshooting .","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Running Remote Build on NixOS","id":"68","title":"Running Remote Build on NixOS"},"69":{"body":"This step assumes that public SSH keys were generated and copied ( ssh-copy-id ) both for normal and root users. For more information, see Setting up public key authentication . Before you begin, make sure an SSH connection is established to the remote host for both normal and root users: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\nnix store ping --store ssh://USER@REMOTE_IP_ADDRESS 1.1. [Local Machine] Configuring SSH Keys Do the following on a local machine: Change directory to Home Directory with SSH: cd .ssh The public keys of the remote machine are located in the known_hosts file. These keys are created and configured after the ssh-copy-id command. Make sure the keys are there. If they are not there: Access the remote machine. Run cd /etc/ssh. Retrieve and copy the public keys. Go back to the local machine and paste them into known_hosts . Navigate to the /etc/ssh/ directory: cd /etc/ssh Make sure the ssh_known_hosts file contains the same public keys as the remote machine (same as .ssh/knwon_hosts). Otherwise, specify it in the configuration.nix file. Use CMD as the root user: sudo -i Make sure the root user’s keys are different from the user’s keys: cd .ssh TIP :.ssh is a user-level access and /etc/ssh is system-wide. 1.2. Accessing Remote Machine Using SSH Do the following: Navigate the authorized_keys file: ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE\ncd .ssh\nsudo nano authorized_keys Make sure that both user and root public keys for the local machine are located there: The user’s public key can be obtained from /home/username/.ssh/id_rsa.pub. The root user's public key can be obtained from /root/.ssh/id_rsa.pub.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 1. Configuring SSH Keys","id":"69","title":"1. Configuring SSH Keys"},"7":{"body":"Orin—NVIDIA Jetson AGX Orin as the main reference device. x86—generic x86_64; tested on Intel NUC (Next Unit of Computing) or laptop. Lenovo X1—Lenovo X1 Carbon Gen 11 laptop. aarch64—generic AArch64; tested on an ARM server, laptop (e.g. Apple MacBook's), or NVIDIA Jetson AGX Orin. All variants—supported devices from Architectural Variants . The following tables show the status of Ghaf Platform features:","breadcrumbs":"Features » Reference Devices","id":"7","title":"Reference Devices"},"70":{"body":"2.1. [Local Machine] Setting Up Configuration Files Do the following on a local machine: Set configuration variables in configuration.nix and nix.conf: Use the following commands: cd /etc/nixos\nsudo nano configuration.nix Add lib in the header like so: { config, pkgs, lib, ... }:. Edit the nix.conf file: environment.etc.\"nix/nix.conf\".text = lib.mkForce '' # Your custom nix.conf content here builders = @/etc/nix/machines require-sigs = false max-jobs = 0 # to use remote build by default not local substituters = https://cache.nixos.org/ trusted-public-keys = cache.nixos.org-1:6pb16ZPMQpcDShjY= cache.farah:STwtDRDeIDa... build-users-group = nixbld trusted-users = root farahayyad experimental-features = nix-command flakes\n''; For more information, see the nix.conf section of the Nix Reference Manual. Rebuild NixOS by running: sudo nixos-rebuild switch Create or set the machines file: Use the following commands: cd /etc/nixos\nsudo nano machines Specify the SSH settings: [ssh://]USER@HOST target-spec [SSH identity file] [max-jobs] [speed factor]\n[supported-features] [mandatory-features] [ssh-public-key-encoded] Parameters inside ‘[ ]’ are optional. The ssh-public-key-encoded is the base-64 encoded public key of the remote machine. Get the encoding using: echo -n \"your_public_key_here\" | base64 If omitted, SSH will use its regular known_hosts file. For more information, see the Remote Builds section of the Nix Reference Manual. 2.2. [Remote Machine] Setting Up Configuration Files Do the following on a remote machine: Specify the sshd_config settings: Use the following commands: cd /etc/ssh\nsudo nano sshd_config Make sure PubkeyAuthentication is set as yes . Specify the /etc/nix/nix.conf settings: Use the following commands: cd /etc/nix\nsudo nano nix.conf Edit the nix.conf file: trusted-public-keys = cache.nixos.org-1:61o0gWypbMrAURk...\nbuild-users-group = nixbld\nrequire-sigs = false\ntrusted-users = root farahayyad jk\nbinary-caches = https://cache.nixos.org/\nsubstituters = https://cache.nixos.org/\nsystem-features = nixos-test benchmark big-parallel kvm\nbinary-cache-public-keys = cache.nixos.org-1:6NCHD59X43...\nexperimental-features = nix-command flakes Run the following command to restart daemon and update all the preceding changes: systemctl restart nix-daemon.service","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » 2. Setting Up Configuration Files","id":"70","title":"2. Setting Up Configuration Files"},"71":{"body":"Single-User Nix Installation Issues VPN Setup for Remote Access Private Key on Local Machine Not Matching Public Key on Remote Machine","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Troubleshooting","id":"71","title":"Troubleshooting"},"72":{"body":"This issue typically arises when Nix is installed in a single-user mode on the remote machine, which can create permission issues during multi-user operations. If an operation fails with the following error message: could not set permissions on '/nix/var/nix/profiles/per-user' to 755: Operation not permitted reinstall Nix in a multi-user setup: Uninstall Nix using a single-user mode: rm -rf /nix Install Nix in a multi-user mode: sh <(curl -L https://nixos.org/nix/install) --daemon For more information about Nix security modes, see the Security section of the Nix Reference Manual.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Single-User Nix Installation Issues","id":"72","title":"Single-User Nix Installation Issues"},"73":{"body":"A VPN is needed, if the local machine is not on the same local network as your remote build machine. To set up a VPN using OpenConnect , do the following: Install OpenConnect: nix-env -iA nixos.openconnect Establish a VPN connection: sudo openconnect --protocol=gp -b access.tii.ae Once authenticated, you establish a secure connection to your network. Use ssh USER@IP_ADDRESS_OF_REMOTE_MACHINE to check if it is possible to connect to the remote machine.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » VPN Setup for Remote Access","id":"73","title":"VPN Setup for Remote Access"},"74":{"body":"Using mismatched key pairs could result in the Permission denied error. Ensure and double-check that you are using the right key pairs. If you choose to use/present your local’s RSA private key, make sure that it is the corresponding RSA public key that is in the remote’s authorized_file, not the ED25519 or ECDSA public keys.","breadcrumbs":"Reference Implementations » Development » Running Remote Build on NixOS » Private Key on Local Machine Not Matching Public Key on Remote Machine","id":"74","title":"Private Key on Local Machine Not Matching Public Key on Remote Machine"},"75":{"body":"","breadcrumbs":"Reference Implementations » Development » Installer » Installer","id":"75","title":"Installer"},"76":{"body":"You can obtain the installation image for your Ghaf configuration. To check possible configuration options, see Modules Options . Set ghaf.installer.enable to true. Add nixos-generators module to ghaf.installer.imgModules list to configure installer image type. Choose installer modules from ghaf.installer.installerModules and set ghaf.installer.enabledModules to list of their names. Write code for the installer in ghaf.installer.installerCode. {config, ...}: { ghaf.installer = { enable = true; imgModules = [ nixos-generators.nixosModules.raw-efi ]; enabledModules = [\"flushImage\"]; installerCode = '' echo \"Starting flushing...\" if sudo dd if=${config.system.build.${config.formatAttr}} of=/dev/${config.ghaf.installer.installerModules.flushImage.providedVariables.deviceName} conv=sync bs=4K status=progress; then sync echo \"Flushing finished successfully!\" echo \"Now you can detach installation device and reboot to Ghaf.\" else echo \"Some error occured during flushing process, exit code: $?.\" exit fi ''; };\n} After that you can build an installer image using this command: nix build .#nixosConfigurations..config.system.build.installer","breadcrumbs":"Reference Implementations » Development » Installer » Configuring and Building Installer for Ghaf","id":"76","title":"Configuring and Building Installer for Ghaf"},"77":{"body":"To add an installer module, replace the corresponding placeholders with your code and add this to your configuraiton: ghaf.installer.installerModules. = { requestCode = '' # Your request code written in Bash ''; providedVariables = { # Notice the dollar sign before the actual variable name in Bash. = \"$\"; };\n};","breadcrumbs":"Reference Implementations » Development » Installer » Adding Installer Modules","id":"77","title":"Adding Installer Modules"},"78":{"body":"Provided variables show variable names in Nix. For actual names of variables in Bash, see the sources of the module.","breadcrumbs":"Reference Implementations » Development » Installer » Built-in Installer Modules","id":"78","title":"Built-in Installer Modules"},"79":{"body":"Provided variables: deviceName: name of the device on which image should be flushed (e.g. \"sda\", \"nvme0n1\")","breadcrumbs":"Reference Implementations » Development » Installer » flushImage","id":"79","title":"flushImage"},"8":{"body":"Feature Status Reference Device Details Ghaf in virtual machine ✅ x86 nix run .#packages.x86_64-linux.vm-debug aarch64 reference image ✅ Orin Based on Jetson Linux , OE4T and jetpack-nixos . aarch64 reference image ✅ imx8qm Based on NXP BSP, implemented as nixos-hardware module x86 generic image ✅ x86 Generic x86 computer, based on generic NixOS . NOTE: requires device specific configuration. Lenovo X1 reference image ✅ Lenovo X1 x86_64 laptop computer, supports basic compartmentalized environment Native build ✅ aarch64, x86 Remote aarc64 nixos builders recommended Cross-compilation 🚧 aarch64, riscv64 Depends on NixOS nixpkgs 23.05 support for cross-compilation CI builds ✅ All Only main-branch, not for all PRs . Emulated build ❌ aarch64 binfmt, may freeze the build machine. Not recommended. See instructions.","breadcrumbs":"Features » Release Builds and Hardware Architecture Support","id":"8","title":"Release Builds and Hardware Architecture Support"},"80":{"body":"Cross-compilation is currently under development and cannot be used properly on all the supported device configurations. Ghaf is targeted at a range of devices and form factors that support different instruction set architectures (ISA). Many small form-factor edge devices are not powerful enough to compile the needed applications or OSs that run on them. As the most common ISA used in desktops and servers is x_86, this will generally require that the code is cross-compiled for target ISA e.g. AArch64 or RISC-V. NixOS and Nixpkgs have good support for cross-compilation, however, there are still some that can not be compiled in this way.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation","id":"80","title":"Cross-Compilation"},"81":{"body":"An SD image for the Microchip Icicle Kit can be cross-compiled from an x86 machine. To generate the release or debug an SD image run the following command: $> nix build .#packages.riscv64-linux.microchip-icicle-kit-","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Cross-Compilation for Microchip Icicle Kit (RISCV64)","id":"81","title":"Cross-Compilation for Microchip Icicle Kit (RISCV64)"},"82":{"body":"This will involve working with upstream package maintainers to ensure that the packages are cross-compilation aware. This will be addressed on a package-by-package basis.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » Future Cross-Compilation Support","id":"82","title":"Future Cross-Compilation Support"},"83":{"body":"binfmt allows running different ISA on a development machine. This is achieved by running the target binary in an emulator such as QEMU or in a VM. So while not cross-compiled it can enable development for some embedded device configurations. To enable binfmt, we recommend to set the following in your host systems configuration.nix: boot.binfmt.emulatedSystems = [ \"riscv64-linux\" \"aarch64-linux\"\n]; In addition, it is recommended to enable KVM support with either boot.kernelModules = [ \"kvm-amd\" ]; or boot.kernelModules = [ \"kvm-intel\" ]; depending on whether your development host is running AMD or Intel processor.","breadcrumbs":"Reference Implementations » Development » Cross-Compilation » binfmt Emulated Build","id":"83","title":"binfmt Emulated Build"},"84":{"body":"Application VM (AppVM) is a VM that improves trust in system components by isolating applications from the host OS and other applications. Virtualization with hardware-backed mechanisms provides better resource protection than traditional OS. This lets users use applications of different trust levels within the same system without compromising system security. While the VMs have overhead, it is acceptable as a result of improved security and usability that makes the application seem like it is running inside an ordinary OS. As a result, both highly trusted applications and untrusted applications can be hosted in the same secure system when the concerns are separated in their own AppVMs. To create an AppVM: Add AppVM description. Add an app launcher in GUI VM.","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Creating Application VM","id":"84","title":"Creating Application VM"},"85":{"body":"Add the VM description in the target configuration. lenovo-x1-carbon.nix already has AppVMs inside for Chromium, Gala, and Zathura applications. AppVMs Example vms = with pkgs; [ { name = \"chromium\"; packages = [chromium]; macAddress = \"02:00:00:03:03:05\"; ramMb = 3072; cores = 4; } { name = \"gala\"; packages = [(pkgs.callPackage ../packages/gala {})]; macAddress = \"02:00:00:03:03:06\"; ramMb = 1536; cores = 2; } { name = \"zathura\"; packages = [zathura]; macAddress = \"02:00:00:03:03:07\"; ramMb = 512; cores = 1; }\n]; Each VM has the following properties: Property Type Unique Description Example name str yes This name is postfixed with -vm and will be shown in microvm list. The name - e.g. chromium-vm will be also the VM hostname. The lenght of the name must be 8 characters or less. “chromium” packages list of types.package no Packages to include in a VM. It is possible to make it empty or add several packages. [chromium top] macAddress str yes Needed for network configuration. \"02:00:00:03:03:05\" ramMb int, [1, …, host memory] no Memory in MB. 3072 cores int, [1, …, host cores] no Virtual CPU cores. 4","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding AppVM Description","id":"85","title":"Adding AppVM Description"},"86":{"body":"To add an application launcher, add an element in the guivm.nix file to the graphics.weston.launchers list. A launcher element has two properties: path –path to the executable you want to run, like a graphical application; icon –path to an icon to show. Check the example launchers at guivm.nix .","breadcrumbs":"Reference Implementations » Development » Creating Application VM » Adding Application Launcher in GUI VM","id":"86","title":"Adding Application Launcher in GUI VM"},"87":{"body":"labwc is a configurable and lightweight wlroots-based Wayland-compatible desktop environment. To use labwc as your default desktop environment, add it as a module to Ghaf: change the configuration option profiles.graphics.compositor = \"labwc\" or uncomment the corresponding line in the guivm.nix file. The basis of the labwc configuration is the set of following files: rc.xml, menu.xml, autostart, and environment. These files can be edited by substituting in the labwc overlay overlays/custom-packages/labwc/default.nix.","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » labwc Desktop Environment","id":"87","title":"labwc Desktop Environment"},"88":{"body":"The border color concept illustrates the application trustworthiness in a user-friendly manner. The color shows the application's security level and allows avoiding user's mistakes. The same approach can be found in other projects, for example, QubeOS . Ghaf uses patched labwc which makes it possible to change the border color for the chosen application. The implementation is based on window rules by substituting the server decoration colors (serverDecoration = yes). The borderColor property is responsible for the frame color. TIP: According to the labwc specification, the identifier parameter is case-sensitive and relates to app_id for native Wayland windows and WM_CLASS for XWayland clients. For example, the foot terminal with Aqua colored frame: \n Foot Terminal with Aqua Colored Frame","breadcrumbs":"Reference Implementations » Development » LabWC Desktop Environment » Window Border Coloring","id":"88","title":"Window Border Coloring"},"89":{"body":"Ghaf is a framework for creating virtualized edge devices, it is therefore expected that projects wishing to use Ghaf should import it to create a derived work for the specific use case. In practice, projects should import Ghaf and its dependencies into an external version control (git) repository. Ghaf provides templates for the reference hardware to ease this process. In this section: overview of Ghaf usage and upstream dependencies required steps to create a Ghaf-based project updating the project to get the latest changes customization of the project using Ghaf-modules and Nix-supported mechanisms The possible Ghaf usage in your project is illustrated in the following diagram: Ghaf Usage Overview The Ghaf Platform repository provides declarative modules and reference implementations to help with declaring your customized secure system. External repositories help make various HW options, system image generators, and reference board-support packages available.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Ghaf as Library: Templates","id":"89","title":"Ghaf as Library: Templates"},"9":{"body":"Feature Status Reference Device Details Quick target update ✅ all nixos-rebuild --flake .#nvidia-jetson-orin-debug --target-host root@ghaf-host --fast switch aarch64 device flashing ✅ Orin Full device software flashing using x86 machine root filesystem flashing ✅ x86, imx8qm dd image to bootable media - see Debug: SSH ✅ Orin, x86 Host access only in -debug-target, see authentication.nix Debug: Serial ✅ all Host access only in -debug-target - e.g. screen /dev/ttyACM0 115200 Compartmentalized environment 🚧 Lenovo X1 NetVM, GUI VM (with GPU passthrough) plus some Application VMs","breadcrumbs":"Features » Development","id":"9","title":"Development"},"90":{"body":"Check the available target templates: nix flake show github:tiiuae/ghaf Select the appropriate template based on reference implementation, for example, target-aarch64-nvidia-orin-agx: nix flake new --template github:tiiuae/ghaf#target-aarch64-nvidia-orin-agx ~/ghaf-example\nwrote: ~/ghaf-example/flake.nix See your project template outputs: cd ~/ghaf-example/\nnix flake show\ngit+file://~/ghaf-example\n├───formatter\n│ ├───aarch64-linux: package 'alejandra-3.0.0'\n│ └───x86_64-linux: package 'alejandra-3.0.0'\n├───nixosConfigurations\n│ └───PROJ_NAME-ghaf-debug: NixOS configuration\n└───packages\n├───aarch64-linux\n│ └───PROJ_NAME-ghaf-debug: package 'nixos-disk-image'\n└───x86_64-linux\n└───PROJ_NAME-ghaf-debug-flash-script: package 'flash-ghaf' Change the placeholder to the name of your project your_project: sed -i 's/PROJ_NAME/your_project/g' flake.nix","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Using Ghaf Templates","id":"90","title":"Using Ghaf Templates"},"91":{"body":"To update your project, run nix flake update. This checks the inputs for updates and based on the availability of the updates, and then generates an updated flake.lock which locks the specific versions to support the reproducible builds without side effects. In practice, a Nix flake does not allow floating inputs but all the inputs and declared packages must be mapped to specific hashes to get exact revisions of your inputs. This mechanism also supports the supply-chain security: if someone changes the upstream project, for example, by overwriting a part of the input so that the hash changes, you will notice. After updating, reviewing, and testing: commit the updated flake.lock to your version history to share reproducible builds within your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Updating Ghaf Revision","id":"91","title":"Updating Ghaf Revision"},"92":{"body":"To use the Ghaf declarative module system, check what you need in your system and choose the modules options you need. For example, import the ghaf graphics-module and declare that you will need the reference Wayland compositor Weston and the demo applications: { ghaf.graphics.weston = { enable = false; enableDemoApplications = false; }; } After the change, rebuild the system and switch it into use in your target device and it will run with the GUI and apps removed. After testing, you can commit the changes and share them with your colleagues to build the same system (even a system image) as needed in your project.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Customizing Ghaf Modules","id":"92","title":"Customizing Ghaf Modules"},"93":{"body":"The compartmentalization could be applied to many specific x86_64 computers and laptops with some customization applied to the Ghaf. The best way to do the Ghaf customization is by using Ghaf templates: Create a template project as described in the Ghaf as Library section. Adjust your system configuration in accordance with your HW specification. Determine all VIDs and PIDs of the devices that are passed to the VMs. Add GUIVM configuration, NetworkVM configuration, and optionally some AppVMs. Set up Weston panel shortcuts. You can refer to the existing project example for Lenovo T14 and Lenovo X1 laptops . Creating the structure that includes all necessary data for the device passthrough: # File 'my-hardware/lenovo-t14.nix':\n# Copyright 2022-2024 TII (SSRC) and the Ghaf contributors\n# SPDX-License-Identifier: Apache-2.0\n#\n# Generic x86_64 computer -target\n{ deviceName = \"lenovo-t14\"; networkPciAddr = \"0000:00:14.3\"; networkPciVid = \"8086\"; networkPciPid = \"02f0\"; gpuPciAddr = \"0000:00:02.0\"; gpuPciVid = \"8086\"; gpuPciPid = \"9b41\"; usbInputVid = \"046d\"; usbInputPid = \"c52b\";\n} The fields of that structure are self-explanatory. Use the lspci -nnk command to get this data from any Linux OS running on the device.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Example Project","id":"93","title":"Example Project"},"94":{"body":"If after booting you see a black screen, try the following to detect the issue: Add a Wi-Fi network name and password to the lenovo-x1-carbon.nix file instead of #networks.\"ssid\".psk = \"psk\". Build and run the image. For more information, see Running Ghaf Image for Lenovo X1 . Identify an IP address by a MAC address with the arp command. If a MAC address is unknown, you can boot into the NixOS image or any other OS to find it, or try the latest addresses that arp returns. Connect using SSH (login/password ghaf/ghaf). Then connect from netvm to the host using ssh 192.168.101.2 (login/password ghaf/ghaf). Check running VMs with microvm -l. Check a GUIVM log using journalctl -u microvm@guivm. If GUIVM does not start, you can try to start it manually with /var/lib/microvms/guivm/current/bin/microvm-run. In case when GUIVM did not start with the error message that the device /dev/mouse or /dev/touchpad was not found, it means that the model of the touchpad in the laptop is different since it was bought in another country and has a different SKU (stock keeping unit). To add support for a new touchpad, do the following: On the ghaf host, check the devices in /dev/input/by-path that contain “-event-” in the name. Use the command like udevadm info -q all -a /dev/input/by-path/pci-0000:00:15.0-platform-i2c_designware.0-event-mouse | grep name for the name of each of these devices. By name you can understand which devices belong to the touchpad. For example, on laptops in Finland they look like “SYNA8016:00 06CB:CEB3 Mouse” and “SYNA8016:00 06CB:CEB3 Touchpad”, and in the UAE they are “ELAN067C:00 04F3:31F9 Mouse” and “ELAN067C:00 04F3:31F9 Touchpad.” If there are no such devices in /dev/input/by-path, then you can check the devices /dev/input/event* with a similar command. When the necessary device names are found, add them to services.udev.extraRules in the lenovo-x1-carbon.nix file, rebuild the image and test the changes.","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Example Project » Troubleshooting for Lenovo X1 Laptop","id":"94","title":"Troubleshooting for Lenovo X1 Laptop"},"95":{"body":"","breadcrumbs":"Reference Implementations » Ghaf as Library: Templates » Modules Options","id":"95","title":"Reference Implementations"},"96":{"body":"Embedded virtualization builds on technologies from cloud security. Cloud services provide scalable but isolated computation — your business case is isolated from someone else's business case. At the hardware level. Similarly, hardware support in modern personal devices has enabled the isolation of device resources with virtualization. This provides the baseline for secure system design for use case protection. In practice, the user can use the same device with a trusted application and with an untrusted application. Both applications are isolated from each other to protect valuable user data and privacy. Our systems are built using Nixpkgs and various Nix -based tools and configurations. For more information on Nix ecosystem, see nix.dev .","breadcrumbs":"Technologies » Technologies","id":"96","title":"Technologies"},"97":{"body":"Protected computation resources include CPU, memory, storage, and other IO devices. Allocation of these resources is managed with the hypervisor. In our reference implementation, we use KVM (Kernel Virtual Machine) from Linux to virtualize hardware access. From hardware, this requires MMU (memory management unit) for CPU physical to virtual address mapping and IOMMU for direct memory access (DMA) capable device virtual addresses to physical addresses of the main memory. Many 64-bit CPUs support virtualization via hypervisor extensions already. Our reference implementation supports x86-64 and Aarch64, and we follow RISC-V hypervisor extensions development.","breadcrumbs":"Technologies » Hardware Requirements for Virtualization","id":"97","title":"Hardware Requirements for Virtualization"},"98":{"body":"On top of OS kernel hypervisor support with KVM. We allocate virtual resources for use cases with user-space virtual machine manager (VMM) using rust-vmm based projects such as cloud-hypervisor and crosvm . QEMU is enabled for certain development use cases. In addition, we have also experimental, Aarch64 demonstrated support for a KVM variant— KVMS —which adds security features to standard KVM.","breadcrumbs":"Technologies » Virtual Machine Manager (VMM)","id":"98","title":"Virtual Machine Manager (VMM)"},"99":{"body":"Compartmentalization Passthrough Binding Device to VFIO Driver NVIDIA Jetson AGX Orin: UART Passthrough NVIDIA Jetson AGX Orin: PCIe Passthrough Generic x86: PCIe Passthrough on crosvm NVIDIA Jetson AGX Orin: Boot and Power Management Processor Virtualization Hypervisor Options","breadcrumbs":"Technologies » In This Chapter","id":"99","title":"In This Chapter"}},"length":284,"save":true},"fields":["title","body","breadcrumbs"],"index":{"body":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.7416573867739413},"273":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"273":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"272":{"tf":2.449489742783178}}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"273":{"tf":1.0}}},"2":{"df":1,"docs":{"273":{"tf":1.0}}},"3":{"df":1,"docs":{"273":{"tf":1.0}}},"4":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.0},"195":{"tf":3.3166247903554},"196":{"tf":1.7320508075688772},"267":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"272":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"69":{"tf":1.0},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":7,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"188":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":5,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":5,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":4,"docs":{"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"267":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"267":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"272":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"267":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"236":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":10,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.23606797749979},"266":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"44":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.4142135623730951}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"282":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":35,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.0},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"283":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"252":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"282":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"272":{"tf":1.0}},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.4142135623730951},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":2.8284271247461903},"85":{"tf":1.0},"86":{"tf":1.7320508075688772},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.449489742783178},"280":{"tf":2.449489742783178},"281":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.0},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":1.7320508075688772},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":26,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.7320508075688772},"133":{"tf":1.0},"14":{"tf":1.4142135623730951},"15":{"tf":1.0},"16":{"tf":2.23606797749979},"2":{"tf":1.0},"20":{"tf":1.0},"211":{"tf":1.7320508075688772},"224":{"tf":1.0},"236":{"tf":2.0},"248":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":2.23606797749979},"35":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.0},"282":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"262":{"tf":1.4142135623730951},"263":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"267":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"250":{"tf":1.0},"258":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.8284271247461903}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"280":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":7,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"273":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"273":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"267":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":4,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"259":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"262":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"280":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":1.7320508075688772},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":2.23606797749979},"271":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.7320508075688772},"46":{"tf":2.23606797749979},"47":{"tf":2.0},"48":{"tf":1.0},"49":{"tf":3.1622776601683795},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"269":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":8,"docs":{"10":{"tf":1.0},"120":{"tf":1.7320508075688772},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"125":{"tf":1.7320508075688772},"127":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"160":{"tf":1.4142135623730951},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":17,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"122":{"tf":1.4142135623730951},"14":{"tf":1.0},"16":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":2.23606797749979},"35":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"183":{"tf":1.0},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":57,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"230":{"tf":1.0},"260":{"tf":1.0},"279":{"tf":2.0},"28":{"tf":1.4142135623730951},"281":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":3.1622776601683795},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"68":{"tf":1.4142135623730951},"70":{"tf":2.0},"73":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"83":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.0},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"263":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.242640687119285},"158":{"tf":2.23606797749979},"250":{"tf":1.0}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":4.0},"273":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":1.7320508075688772},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":2.0},"136":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"272":{"tf":7.211102550927978},"273":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"280":{"tf":2.0},"282":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"267":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"251":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":2.8284271247461903}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.0},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"280":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":1.7320508075688772},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":4.358898943540674},"273":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"265":{"tf":1.7320508075688772},"271":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"227":{"tf":1.4142135623730951},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":1.7320508075688772},"267":{"tf":3.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.7320508075688772},"70":{"tf":2.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"282":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"272":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":2.8284271247461903},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":1.7320508075688772},"219":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"272":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":4,"docs":{"122":{"tf":1.0},"132":{"tf":2.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.4142135623730951},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.0},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"269":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"278":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":29,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":1.4142135623730951},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.0},"81":{"tf":1.4142135623730951},"82":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":7,"docs":{"101":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"254":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"252":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":8,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.8284271247461903},"21":{"tf":1.0},"211":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":1.4142135623730951},"40":{"tf":1.0}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.0},"282":{"tf":2.6457513110645907},"283":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"240":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.0},"131":{"tf":1.0},"15":{"tf":1.0},"273":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"267":{"tf":4.69041575982343},"273":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"279":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.449489742783178},"274":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"282":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"265":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.7320508075688772}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":46,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"260":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":2.8284271247461903},"6":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.7320508075688772},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.0},"102":{"tf":2.6457513110645907},"103":{"tf":3.605551275463989},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.0},"113":{"tf":4.0},"114":{"tf":3.3166247903554},"115":{"tf":2.6457513110645907},"116":{"tf":2.8284271247461903},"117":{"tf":1.0},"118":{"tf":2.6457513110645907},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":1.7320508075688772},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"209":{"tf":1.0},"219":{"tf":2.0},"265":{"tf":4.123105625617661},"267":{"tf":3.0},"268":{"tf":2.6457513110645907},"269":{"tf":1.4142135623730951},"270":{"tf":4.0},"271":{"tf":3.605551275463989},"272":{"tf":4.795831523312719},"273":{"tf":3.0},"274":{"tf":2.6457513110645907},"277":{"tf":3.3166247903554},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":1.7320508075688772},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"281":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"279":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"282":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"283":{"tf":1.0},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"132":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"230":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"a":{"df":2,"docs":{"267":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.3166247903554},"118":{"tf":2.0},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":1.4142135623730951},"103":{"tf":2.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.4142135623730951},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"c":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}}},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"270":{"tf":3.0},"277":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.0}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"270":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"281":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.0},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"235":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.0},"118":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.7320508075688772},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":18,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.4142135623730951},"177":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"174":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.8284271247461903},"267":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"236":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"264":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"243":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":19,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"11":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"70":{"tf":2.23606797749979},"8":{"tf":1.0},"9":{"tf":1.0},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.8284271247461903},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.4142135623730951},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.23606797749979},"160":{"tf":2.449489742783178},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"183":{"tf":1.0},"199":{"tf":1.0},"272":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"280":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"280":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"257":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.23606797749979},"152":{"tf":1.0},"271":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"265":{"tf":1.0},"274":{"tf":1.0},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":15,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"253":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"267":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"272":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"272":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.4142135623730951},"283":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.0}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.0},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.0},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"283":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":46,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":1.7320508075688772},"131":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.0},"199":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"281":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":95,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":1.7320508075688772},"162":{"tf":2.0},"163":{"tf":1.0},"166":{"tf":2.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"170":{"tf":3.7416573867739413},"171":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"178":{"tf":3.0},"179":{"tf":1.0},"182":{"tf":2.0},"184":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.7320508075688772},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"2":{"tf":1.7320508075688772},"202":{"tf":1.0},"206":{"tf":1.4142135623730951},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":3.3166247903554},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.23606797749979},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.23606797749979},"63":{"tf":1.0},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":2.0},"67":{"tf":2.23606797749979},"7":{"tf":1.0},"76":{"tf":1.7320508075688772},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.3166247903554},"90":{"tf":2.8284271247461903},"91":{"tf":1.0},"92":{"tf":1.7320508075688772},"93":{"tf":2.23606797749979},"94":{"tf":1.4142135623730951}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"271":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"253":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"267":{"tf":2.0},"272":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"267":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"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":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":2.0},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":2.23606797749979},"274":{"tf":1.0},"275":{"tf":1.0},"277":{"tf":1.7320508075688772},"279":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.4142135623730951}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"265":{"tf":1.0},"282":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"283":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"269":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":2.0},"44":{"tf":1.0},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.7320508075688772}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.6457513110645907},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":71,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.449489742783178},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.0},"176":{"tf":2.0},"188":{"tf":2.0},"19":{"tf":1.7320508075688772},"199":{"tf":2.0},"20":{"tf":2.6457513110645907},"200":{"tf":1.0},"21":{"tf":1.7320508075688772},"214":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":2.6457513110645907},"26":{"tf":1.0},"265":{"tf":2.449489742783178},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":2.0},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.0},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.4142135623730951},"254":{"tf":1.0}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.0},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":1.7320508075688772},"129":{"tf":1.4142135623730951},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"166":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":13,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"269":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"245":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.0},"267":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":2.6457513110645907},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.4142135623730951},"63":{"tf":1.7320508075688772},"64":{"tf":1.7320508075688772},"65":{"tf":2.6457513110645907},"66":{"tf":2.0},"67":{"tf":2.8284271247461903},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"279":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"262":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"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":38,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"253":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"265":{"tf":2.23606797749979},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":7,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":1.4142135623730951},"256":{"tf":1.0},"263":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":27,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.4142135623730951},"264":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":2.23606797749979},"280":{"tf":3.0},"281":{"tf":3.7416573867739413},"282":{"tf":3.605551275463989},"283":{"tf":1.4142135623730951},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"73":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":2.6457513110645907},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"224":{"tf":1.0},"283":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":16,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"238":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.23606797749979},"282":{"tf":1.0},"283":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.0},"229":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.0},"267":{"tf":3.7416573867739413},"273":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.0},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"280":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.0},"189":{"tf":1.0},"204":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":39,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"237":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.449489742783178},"43":{"tf":4.242640687119285},"44":{"tf":2.6457513110645907},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":32,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"155":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.449489742783178},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.7416573867739413},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":2.6457513110645907}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979},"81":{"tf":1.7320508075688772}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"282":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"c":{"df":3,"docs":{"59":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.4142135623730951}}},"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.0},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.7320508075688772}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.0},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.0}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"241":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"273":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.242640687119285},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"257":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"259":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"271":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"265":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"277":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"267":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"260":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":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":{"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"271":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.0},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"148":{"tf":1.4142135623730951},"152":{"tf":1.4142135623730951},"155":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"135":{"tf":1.0},"140":{"tf":1.0},"144":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"275":{"tf":2.0},"276":{"tf":2.0},"277":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.7320508075688772}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"283":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.0}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.0}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.0}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.0}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.0}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.0}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.0}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"238":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"81":{"tf":1.4142135623730951}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":1.7320508075688772},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":15,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.0},"19":{"tf":2.23606797749979},"20":{"tf":1.7320508075688772},"21":{"tf":2.0},"23":{"tf":1.0},"24":{"tf":1.0},"26":{"tf":1.0},"29":{"tf":1.4142135623730951},"31":{"tf":1.0},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"271":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.0},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"228":{"tf":1.0},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.7320508075688772},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":22,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.4142135623730951},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.4142135623730951},"78":{"tf":1.4142135623730951},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"229":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"278":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.605551275463989},"273":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":23,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.4641016151377544},"257":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":3.0},"36":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"243":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.0},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":1.7320508075688772},"230":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.23606797749979},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":31,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"230":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"271":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":10,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"268":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0}}}}},"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":39,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":1.7320508075688772},"120":{"tf":1.7320508075688772},"122":{"tf":1.7320508075688772},"123":{"tf":2.23606797749979},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"281":{"tf":1.0}},"m":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.0},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"271":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"283":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.0}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":26,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"128":{"tf":1.7320508075688772},"129":{"tf":2.0},"130":{"tf":2.23606797749979},"131":{"tf":2.0},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"201":{"tf":1.0},"266":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"270":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.4142135623730951},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.7320508075688772},"282":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":41,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":1.4142135623730951},"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"11":{"tf":2.0},"110":{"tf":1.4142135623730951},"111":{"tf":2.6457513110645907},"113":{"tf":1.0},"120":{"tf":1.4142135623730951},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.0},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.0},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.4142135623730951},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"279":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.4142135623730951},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":36,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":2.6457513110645907},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.7320508075688772},"106":{"tf":1.4142135623730951},"107":{"tf":1.0},"108":{"tf":1.0},"110":{"tf":1.4142135623730951},"112":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":3.0},"266":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.4142135623730951},"35":{"tf":2.0},"37":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"272":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.7320508075688772}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.23606797749979},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"233":{"tf":1.0},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.872983346207417},"112":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":2.23606797749979},"117":{"tf":1.0},"118":{"tf":1.0},"234":{"tf":1.0},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"272":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"261":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"243":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"267":{"tf":1.0},"273":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"256":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"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":35,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"122":{"tf":1.4142135623730951},"125":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.7320508075688772},"219":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.23606797749979},"272":{"tf":2.0},"277":{"tf":2.0},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"281":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"277":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.0}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"253":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.4142135623730951},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"267":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.449489742783178},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"260":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"212":{"tf":1.4142135623730951},"254":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":27,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"267":{"tf":5.0990195135927845},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":1.7320508075688772},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"283":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.0},"19":{"tf":1.0},"254":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":8,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":1.7320508075688772},"256":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.4142135623730951},"235":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.0},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":2.0},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"277":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"282":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"272":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"259":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.4142135623730951},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"282":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"r":{"d":{"df":5,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.23606797749979},"211":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":41,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.0},"57":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"8":{"tf":2.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"272":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.0},"204":{"tf":1.4142135623730951},"205":{"tf":1.0},"249":{"tf":1.0},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":43,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.4142135623730951},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.4142135623730951},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"272":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":1.7320508075688772},"69":{"tf":2.23606797749979},"70":{"tf":2.23606797749979},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":1.0},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"273":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"280":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.23606797749979},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.4142135623730951},"170":{"tf":1.0},"177":{"tf":1.4142135623730951},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.0},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":6,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"264":{"tf":1.4142135623730951},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.4142135623730951},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.4142135623730951}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"282":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"277":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":58,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.0},"195":{"tf":2.6457513110645907},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.7320508075688772},"199":{"tf":1.7320508075688772},"200":{"tf":1.4142135623730951},"201":{"tf":1.0},"213":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.7320508075688772},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"14":{"tf":1.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.4142135623730951},"149":{"tf":2.0},"150":{"tf":2.0},"151":{"tf":2.449489742783178},"152":{"tf":1.7320508075688772},"259":{"tf":1.0}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"236":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.0},"260":{"tf":1.0},"272":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"267":{"tf":1.0},"269":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"272":{"tf":3.3166247903554},"273":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"272":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":65,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.23606797749979},"135":{"tf":1.4142135623730951},"136":{"tf":1.4142135623730951},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.4142135623730951},"149":{"tf":1.0},"153":{"tf":1.0},"155":{"tf":1.7320508075688772},"156":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0},"159":{"tf":2.0},"160":{"tf":1.7320508075688772},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.449489742783178},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.4142135623730951},"263":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.23606797749979},"283":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.0},"46":{"tf":1.7320508075688772},"47":{"tf":2.23606797749979},"48":{"tf":1.7320508075688772},"49":{"tf":2.8284271247461903},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"265":{"tf":1.4142135623730951},"281":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.4142135623730951},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"281":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.4142135623730951},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.0},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"272":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.7320508075688772},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":2,"docs":{"190":{"tf":1.0},"191":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"252":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":1.7320508075688772},"143":{"tf":1.0},"144":{"tf":2.449489742783178},"145":{"tf":2.23606797749979},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"279":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"282":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"238":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.7320508075688772}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.47213595499958},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":8,"docs":{"135":{"tf":1.0},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":2.23606797749979},"166":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"279":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"238":{"tf":1.0}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":29,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":1.7320508075688772},"148":{"tf":2.0},"149":{"tf":1.0},"15":{"tf":1.7320508075688772},"150":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.7320508075688772},"262":{"tf":1.4142135623730951},"263":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"282":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":50,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":1.7320508075688772},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.7320508075688772},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.4142135623730951},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":1.7320508075688772},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"236":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"239":{"tf":1.0}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.7416573867739413},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":9,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"50":{"tf":2.23606797749979}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"253":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":1.7320508075688772},"195":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"239":{"tf":1.0},"265":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.0},"182":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0},"33":{"tf":1.0},"38":{"tf":1.0},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.4142135623730951},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"281":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":10,"docs":{"131":{"tf":1.0},"134":{"tf":2.0},"136":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"4":{"tf":2.0},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.7320508075688772},"173":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.4142135623730951},"187":{"tf":1.4142135623730951},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"279":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.7320508075688772},"82":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"282":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":1.7320508075688772},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.449489742783178},"281":{"tf":1.0},"282":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.4142135623730951},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"263":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.4142135623730951},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"259":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"240":{"tf":1.0}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":7,"docs":{"0":{"tf":1.0},"13":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":9,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"271":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.4142135623730951},"90":{"tf":2.23606797749979},"93":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.4142135623730951},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"282":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.0},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"241":{"tf":1.0}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.0},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.7320508075688772},"283":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.0},"265":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"282":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.7320508075688772},"108":{"tf":2.23606797749979},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.4142135623730951},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":3.3166247903554},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":2.449489742783178},"277":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"273":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":18,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"267":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"282":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.23606797749979}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":12,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"105":{"tf":3.605551275463989},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"242":{"tf":1.0},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"243":{"tf":1.0},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.0},"244":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"237":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.7320508075688772},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":2.8284271247461903}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":1.7320508075688772},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"280":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"2":{"df":1,"docs":{"267":{"tf":1.0}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.7320508075688772},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"281":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.6457513110645907},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":2.6457513110645907},"156":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.4142135623730951},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":1.7320508075688772},"103":{"tf":2.0},"109":{"tf":2.0},"112":{"tf":2.449489742783178},"113":{"tf":3.3166247903554},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.6457513110645907},"125":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":3.4641016151377544},"277":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"271":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":42,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.7320508075688772},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":2.23606797749979},"122":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"235":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.449489742783178},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":52,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.23606797749979},"11":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"195":{"tf":3.3166247903554},"196":{"tf":2.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.0},"267":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":2.23606797749979},"52":{"tf":3.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.7320508075688772},"83":{"tf":1.0},"84":{"tf":2.23606797749979},"85":{"tf":2.6457513110645907},"86":{"tf":1.0},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":9,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.7320508075688772}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"227":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"280":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":1.7320508075688772},"194":{"tf":2.23606797749979},"195":{"tf":4.242640687119285},"196":{"tf":2.0},"197":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"227":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":1.7320508075688772}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":22,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":35,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"248":{"tf":1.0},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"breadcrumbs":{"root":{"0":{".":{"4":{"7":{"2":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"9":{".":{"3":{"5":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},":":{"0":{"0":{":":{"0":{"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"4":{".":{"3":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"107":{"tf":1.4142135623730951}}},"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"113":{"tf":1.0}}},"5":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{":":{"0":{"0":{":":{"0":{"0":{":":{"0":{"3":{":":{"0":{"3":{":":{"0":{"5":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"6":{"df":1,"docs":{"85":{"tf":1.0}}},"7":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"6":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"3":{":":{"3":{"1":{"df":0,"docs":{},"f":{"9":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"6":{"c":{"b":{":":{"c":{"df":0,"docs":{},"e":{"b":{"3":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{":":{"2":{"6":{"df":1,"docs":{"125":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":8,"docs":{"125":{"tf":1.0},"138":{"tf":1.4142135623730951},"156":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.7416573867739413},"273":{"tf":1.7320508075688772},"70":{"tf":1.0}},"x":{"0":{"0":{"0":{"0":{"1":{"4":{"a":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":4.0}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"108":{"tf":1.4142135623730951}}},"2":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"4":{"df":3,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0}}},"6":{"0":{"0":{"0":{"0":{"2":{"0":{"df":1,"docs":{"273":{"tf":3.7416573867739413}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"106":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772}},"e":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"272":{"tf":2.449489742783178}}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"c":{"2":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"3":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"d":{"0":{"0":{"0":{"0":{"df":2,"docs":{"106":{"tf":1.0},"107":{"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":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"1":{"df":1,"docs":{"273":{"tf":1.0}}},"2":{"df":1,"docs":{"273":{"tf":1.0}}},"3":{"df":1,"docs":{"273":{"tf":1.0}}},"4":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{},"f":{"8":{"0":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}},"8":{"0":{"0":{"1":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"1":{",":{"5":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}},".":{"1":{"df":1,"docs":{"69":{"tf":1.0}}},"2":{"df":3,"docs":{"147":{"tf":1.0},"212":{"tf":1.0},"69":{"tf":1.0}}},"df":0,"docs":{}},"0":{"0":{"6":{"4":{"4":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"4":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"*":{"1":{"0":{"2":{"4":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"2":{"0":{"0":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.4142135623730951},"9":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":12,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"193":{"tf":2.0},"194":{"tf":2.23606797749979},"195":{"tf":3.4641016151377544},"196":{"tf":2.0},"267":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"g":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}}},"2":{"0":{"3":{"0":{"0":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"df":1,"docs":{"126":{"tf":1.0}}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{".":{"0":{".":{"0":{".":{"1":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":1,"docs":{"272":{"tf":1.0}},"v":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"4":{"0":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}},"5":{"3":{"6":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"176":{"tf":1.0}}},"6":{"1":{",":{"1":{"0":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"9":{"df":1,"docs":{"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"6":{"6":{"6":{"6":{"6":{"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"156":{"tf":1.0},"272":{"tf":1.0}}},"7":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"130":{"tf":1.4142135623730951}}},"8":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"9":{"2":{".":{"1":{"6":{"8":{".":{"1":{"0":{"1":{".":{"2":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"5":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},":":{"6":{"1":{"df":0,"docs":{},"o":{"0":{"df":0,"docs":{},"g":{"df":0,"docs":{},"w":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"d":{"5":{"9":{"df":0,"docs":{},"x":{"4":{"3":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"b":{"1":{"6":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"c":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"j":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":19,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"130":{"tf":1.7320508075688772},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"160":{"tf":1.0},"170":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"201":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"69":{"tf":1.4142135623730951},"85":{"tf":1.7320508075688772}},"g":{"df":1,"docs":{"126":{"tf":1.0}}},"p":{"8":{"df":0,"docs":{},"v":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"2":{".":{"0":{"df":1,"docs":{"93":{"tf":1.0}}},"1":{"df":1,"docs":{"70":{"tf":1.0}}},"2":{"df":1,"docs":{"70":{"tf":1.0}}},"3":{"7":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"4":{".":{"1":{"1":{"5":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{".":{"1":{"2":{".":{"2":{"0":{"2":{"2":{"df":1,"docs":{"265":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"3":{"df":1,"docs":{"39":{"tf":1.0}}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"93":{"tf":1.0}}},"3":{"df":3,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"212":{"tf":1.0}}},"4":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":1.0}}},"2":{".":{"1":{"0":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{".":{"2":{"0":{"2":{"3":{"0":{"3":{"1":{"0":{".":{"8":{"2":{"4":{"df":0,"docs":{},"f":{"8":{"8":{"6":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":3,"docs":{"111":{"tf":1.0},"126":{"tf":1.0},"267":{"tf":1.0}}},"3":{".":{"0":{"5":{"df":9,"docs":{"162":{"tf":1.0},"182":{"tf":1.4142135623730951},"184":{"tf":1.0},"185":{"tf":1.7320508075688772},"186":{"tf":1.4142135623730951},"187":{"tf":1.0},"188":{"tf":1.7320508075688772},"189":{"tf":1.0},"8":{"tf":1.0}}},"6":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"182":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":8,"docs":{"162":{"tf":1.0},"175":{"tf":1.0},"179":{"tf":1.7320508075688772},"180":{"tf":1.4142135623730951},"181":{"tf":1.0},"182":{"tf":1.7320508075688772},"183":{"tf":1.0},"184":{"tf":1.0}}},"9":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":10,"docs":{"162":{"tf":1.0},"167":{"tf":1.0},"171":{"tf":1.7320508075688772},"172":{"tf":1.4142135623730951},"173":{"tf":1.0},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"1":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"2":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"x":{"8":{"6":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"x":{"1":{"_":{"c":{"a":{"df":0,"docs":{},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"170":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":9,"docs":{"162":{"tf":1.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.4142135623730951},"165":{"tf":1.0},"166":{"tf":1.7320508075688772},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"3":{"2":{"4":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"df":0,"docs":{},"x":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"9":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"6":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.0}}},"7":{"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"8":{"df":1,"docs":{"267":{"tf":1.0}}},"9":{"df":2,"docs":{"212":{"tf":1.0},"267":{"tf":1.0}}},"a":{"/":{"3":{"a":{"/":{"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"272":{"tf":1.4142135623730951},"49":{"tf":1.0},"70":{"tf":1.4142135623730951},"85":{"tf":1.0}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"3":{".":{"0":{".":{"0":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"7":{"2":{"df":1,"docs":{"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":2,"docs":{"111":{"tf":1.0},"267":{"tf":1.0}}},"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"2":{"7":{"6":{"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"195":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"5":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"7":{"df":1,"docs":{"272":{"tf":1.0}}},"8":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"5":{"df":0,"docs":{},"x":{"df":0,"docs":{},"e":{"c":{"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":7,"docs":{"105":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772}},"v":{"3":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}},"4":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"105":{"tf":1.0}},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":7,"docs":{"138":{"tf":2.449489742783178},"139":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"5":{".":{"1":{"0":{"df":1,"docs":{"266":{"tf":1.0}}},"9":{".":{"0":{"df":1,"docs":{"118":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":4,"docs":{"129":{"tf":1.0},"130":{"tf":1.0},"156":{"tf":1.0},"85":{"tf":1.0}},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"2":{"0":{"0":{".":{"2":{"8":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":4,"docs":{"152":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"43":{"tf":1.0}}},"6":{".":{"2":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{".":{"5":{"df":1,"docs":{"43":{"tf":2.449489742783178}}},"df":0,"docs":{}},"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"0":{"df":1,"docs":{"272":{"tf":1.0}}},"4":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":5,"docs":{"236":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"70":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"5":{"0":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772}}},"7":{".":{"1":{".":{"0":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}},"5":{"5":{"df":2,"docs":{"199":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":1,"docs":{"111":{"tf":1.0}}}},"6":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"131":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"8":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"8":{"6":{"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":1,"docs":{"111":{"tf":1.0}}},"3":{"3":{"3":{"3":{"3":{"3":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"125":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":2.6457513110645907},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}},"u":{"a":{"d":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"x":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"x":{"df":1,"docs":{"111":{"tf":1.0}}}},"9":{".":{"7":{"df":0,"docs":{},"k":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"9":{"7":{"0":{"4":{"7":{"9":{".":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":2.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"156":{"tf":1.0}}},"b":{"4":{"1":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"a":{"+":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"/":{"b":{"df":3,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"30":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"0":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"a":{"df":0,"docs":{},"r":{"c":{"6":{"4":{"df":1,"docs":{"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"6":{"4":{"df":17,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":3,"docs":{"202":{"tf":3.1622776601683795},"203":{"tf":1.7320508075688772},"204":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"132":{"tf":1.0}}}},"o":{"df":0,"docs":{},"v":{"df":6,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":1.0},"283":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"144":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"224":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"c":{"6":{"2":{"6":{"b":{"3":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{".":{".":{"d":{"6":{"df":0,"docs":{},"f":{"b":{"5":{"9":{"7":{"a":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"54":{"tf":1.0},"84":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"73":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":26,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"139":{"tf":1.0},"153":{"tf":1.0},"157":{"tf":1.0},"195":{"tf":1.4142135623730951},"215":{"tf":1.4142135623730951},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"35":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"134":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"r":{"d":{"df":6,"docs":{"126":{"tf":1.0},"203":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"156":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"194":{"tf":1.0},"28":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":6,"docs":{"0":{"tf":1.0},"142":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"83":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":2,"docs":{"202":{"tf":2.23606797749979},"203":{"tf":1.4142135623730951}}}}}}},"t":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"282":{"tf":1.0}}}},"v":{"df":10,"docs":{"111":{"tf":1.0},"159":{"tf":1.0},"188":{"tf":1.0},"221":{"tf":1.4142135623730951},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"272":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":9,"docs":{"100":{"tf":1.0},"111":{"tf":1.7320508075688772},"116":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{}}},"y":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":3,"docs":{"265":{"tf":1.0},"267":{"tf":2.0},"59":{"tf":1.0}}}}},"d":{"df":17,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951},"87":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":10,"docs":{"161":{"tf":1.0},"19":{"tf":1.0},"197":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"83":{"tf":1.0},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"=":{"$":{"df":0,"docs":{},"{":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":15,"docs":{"108":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"199":{"tf":1.0},"211":{"tf":1.0},"214":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"82":{"tf":1.0},"94":{"tf":2.0},"97":{"tf":1.7320508075688772}}}}}}},"df":16,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"131":{"tf":2.0},"155":{"tf":1.0},"166":{"tf":1.0},"211":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.23606797749979},"44":{"tf":1.0},"77":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"156":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":4,"docs":{"10":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"30":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"21":{"tf":1.0},"3":{"tf":1.0}}}}},"r":{"df":6,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":2.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"201":{"tf":1.0},"209":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"176":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"65":{"tf":1.4142135623730951}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"217":{"tf":1.0},"282":{"tf":1.0},"57":{"tf":1.0}}}}}}}}},"x":{"df":42,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.4142135623730951},"127":{"tf":1.0},"165":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}}},"h":{"b":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"df":0,"docs":{},"m":{"df":9,"docs":{"0":{"tf":1.0},"132":{"tf":1.0},"149":{"tf":1.0},"209":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.4142135623730951},"50":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0}}},"r":{"df":1,"docs":{"283":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"90":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"df":1,"docs":{"252":{"tf":1.0}}}}}}}}},"i":{"df":0,"docs":{},"k":{"df":2,"docs":{"188":{"tf":1.0},"219":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"97":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{},"w":{"df":17,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"102":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"157":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"4":{"tf":1.4142135623730951},"46":{"tf":1.0},"57":{"tf":1.0},"83":{"tf":1.0},"88":{"tf":1.0},"91":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"282":{"tf":1.0}},"g":{"df":2,"docs":{"111":{"tf":1.0},"57":{"tf":1.0}}}},"u":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"h":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"i":{"df":9,"docs":{"145":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"+":{"df":0,"docs":{},"t":{"a":{"b":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"272":{"tf":1.0}},"n":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"137":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0},"42":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"d":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":6,"docs":{"134":{"tf":1.0},"150":{"tf":1.4142135623730951},"160":{"tf":2.449489742783178},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"4":{"tf":1.4142135623730951}}}},"z":{"df":3,"docs":{"160":{"tf":2.0},"25":{"tf":1.4142135623730951},"29":{"tf":1.0}}}}}},"d":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"35":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":10,"docs":{"0":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":2.0},"53":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":2,"docs":{"184":{"tf":1.0},"189":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":8,"docs":{"111":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.0},"202":{"tf":1.0},"52":{"tf":1.0},"94":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"a":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"f":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"x":{"8":{"6":{"_":{"6":{"4":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"199":{"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":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"245":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"p":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"1":{"2":{"7":{".":{"0":{".":{"0":{".":{"1":{":":{"8":{"4":{"4":{"3":{"/":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"?":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"176":{"tf":1.0},"84":{"tf":1.0},"92":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"268":{"tf":1.0}}}},"df":0,"docs":{},"n":{"d":{"df":5,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"df":1,"docs":{"7":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":30,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"100":{"tf":2.0},"11":{"tf":1.7320508075688772},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":2.0},"170":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.4142135623730951},"219":{"tf":1.7320508075688772},"46":{"tf":1.0},"5":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":2.0},"58":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"84":{"tf":3.1622776601683795},"85":{"tf":1.4142135623730951},"86":{"tf":2.23606797749979},"88":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.7320508075688772}}},"df":4,"docs":{"0":{"tf":1.4142135623730951},"118":{"tf":1.0},"3":{"tf":1.0},"93":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":17,"docs":{"100":{"tf":1.0},"102":{"tf":1.0},"116":{"tf":1.0},"127":{"tf":1.0},"132":{"tf":1.0},"214":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.4142135623730951},"279":{"tf":2.6457513110645907},"280":{"tf":2.6457513110645907},"281":{"tf":1.4142135623730951},"283":{"tf":1.4142135623730951},"4":{"tf":1.0},"56":{"tf":1.7320508075688772},"57":{"tf":1.0},"61":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"203":{"tf":1.4142135623730951},"90":{"tf":1.0}}}}},"v":{"df":1,"docs":{"20":{"tf":1.0}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":7,"docs":{"10":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"84":{"tf":2.0},"85":{"tf":2.0},"93":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"q":{"df":0,"docs":{},"u":{"a":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{},"x":{"8":{"6":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"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":3,"docs":{"275":{"tf":1.0},"276":{"tf":1.0},"49":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":61,"docs":{"0":{"tf":2.0},"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"105":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":2.23606797749979},"133":{"tf":1.0},"14":{"tf":1.7320508075688772},"15":{"tf":2.0},"16":{"tf":2.8284271247461903},"17":{"tf":1.4142135623730951},"18":{"tf":1.4142135623730951},"19":{"tf":1.4142135623730951},"2":{"tf":1.0},"20":{"tf":1.7320508075688772},"21":{"tf":1.4142135623730951},"211":{"tf":1.7320508075688772},"22":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"236":{"tf":2.0},"24":{"tf":1.4142135623730951},"248":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"27":{"tf":1.4142135623730951},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"29":{"tf":1.4142135623730951},"3":{"tf":2.23606797749979},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"33":{"tf":1.4142135623730951},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"61":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.0}},"e":{">":{".":{"<":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"0":{"tf":1.0},"52":{"tf":1.0}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":5,"docs":{"114":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"270":{"tf":1.4142135623730951}}}}}}}},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"72":{"tf":1.0}}}},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}}}}},"df":0,"docs":{},"s":{"b":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"106":{"tf":1.0},"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"6":{"4":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":8,"docs":{"115":{"tf":1.7320508075688772},"116":{"tf":2.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"194":{"tf":1.0},"236":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"7":{"tf":1.0}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"203":{"tf":2.23606797749979},"282":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"137":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"262":{"tf":1.7320508075688772},"263":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"282":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"4":{"tf":1.0},"44":{"tf":1.4142135623730951}}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":4,"docs":{"114":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"107":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"m":{"df":4,"docs":{"144":{"tf":1.0},"154":{"tf":1.0},"60":{"tf":1.0},"69":{"tf":1.0}}},"r":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"242":{"tf":1.0}}}}}}},"df":0,"docs":{}}}},"t":{"8":{"0":{"3":{"df":0,"docs":{},"x":{",":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}},"v":{"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"c":{"6":{"0":{"8":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"f":{"df":1,"docs":{"267":{"tf":1.0}}},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"100":{"tf":1.0},"134":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0},"41":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":4,"docs":{"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"3":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.0}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"9":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"o":{"df":0,"docs":{},"r":{"df":8,"docs":{"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.7320508075688772},"250":{"tf":1.0},"258":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":1,"docs":{"69":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"o":{"df":1,"docs":{"160":{"tf":1.4142135623730951}},"m":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"105":{"tf":1.0},"150":{"tf":1.4142135623730951},"207":{"tf":1.4142135623730951},"214":{"tf":1.0},"269":{"tf":1.0},"282":{"tf":1.7320508075688772}}}},"df":6,"docs":{"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"135":{"tf":1.0},"138":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":3.1622776601683795}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"208":{"tf":1.0},"209":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"v":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":16,"docs":{"105":{"tf":1.0},"109":{"tf":1.4142135623730951},"139":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"273":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"47":{"tf":1.0},"60":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"202":{"tf":1.0},"88":{"tf":1.0}}},"df":0,"docs":{}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"134":{"tf":1.0},"82":{"tf":1.0}}},"y":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}},"b":{"/":{"df":0,"docs":{},"h":{"df":0,"docs":{},"w":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"c":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"a":{"c":{"df":0,"docs":{},"k":{"df":5,"docs":{"103":{"tf":1.0},"191":{"tf":1.0},"280":{"tf":1.0},"69":{"tf":1.0},"84":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"166":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}}}},"r":{"df":3,"docs":{"167":{"tf":1.0},"168":{"tf":1.0},"62":{"tf":1.0}},"e":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"6":{"4":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":44,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.0},"108":{"tf":1.4142135623730951},"121":{"tf":1.0},"13":{"tf":1.0},"141":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"230":{"tf":1.0},"236":{"tf":1.7320508075688772},"24":{"tf":1.0},"240":{"tf":1.0},"271":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"3":{"tf":1.7320508075688772},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"0":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":1.0},"44":{"tf":1.0},"96":{"tf":1.0}}}}}},"h":{"df":4,"docs":{"130":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"78":{"tf":1.0}}},"i":{"c":{"df":14,"docs":{"135":{"tf":1.0},"138":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"45":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0}}},"df":3,"docs":{"160":{"tf":1.4142135623730951},"82":{"tf":1.0},"87":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}}},"df":5,"docs":{"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"67":{"tf":1.0},"73":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"4":{"tf":1.0}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"116":{"tf":1.0},"132":{"tf":1.0},"160":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":18,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"143":{"tf":1.7320508075688772},"194":{"tf":1.0},"203":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"77":{"tf":1.0}}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"203":{"tf":1.4142135623730951},"273":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"103":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"113":{"tf":1.0},"153":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}}},"w":{"df":10,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"273":{"tf":1.0},"5":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"70":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"156":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"3":{"tf":1.0},"56":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"84":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":8,"docs":{"147":{"tf":1.0},"157":{"tf":1.0},"168":{"tf":1.0},"195":{"tf":1.4142135623730951},"214":{"tf":1.0},"243":{"tf":1.0},"25":{"tf":1.0},"267":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.0}}},"df":0,"docs":{}}}}},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.0}}},"l":{"df":0,"docs":{},"l":{"df":7,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"259":{"tf":1.0}}}},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"v":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"v":{"df":1,"docs":{"199":{"tf":1.0}}}}},"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":12,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"199":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":1.4142135623730951},"279":{"tf":1.0},"4":{"tf":1.0},"57":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}},"d":{"df":12,"docs":{"101":{"tf":1.0},"102":{"tf":2.0},"103":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"125":{"tf":1.0},"145":{"tf":1.0},"257":{"tf":1.0},"270":{"tf":2.0},"99":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":2,"docs":{"8":{"tf":1.0},"83":{"tf":2.0}}}}}},"o":{"df":1,"docs":{"49":{"tf":1.0}}},"t":{"df":9,"docs":{"112":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"195":{"tf":1.0},"236":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0},"65":{"tf":1.0},"97":{"tf":1.0}}}},"l":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":1,"docs":{"130":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"262":{"tf":1.0},"57":{"tf":1.0}}},"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}}}},"o":{"a":{"df":0,"docs":{},"r":{"d":{"'":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}},"df":12,"docs":{"104":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.4142135623730951},"111":{"tf":3.4641016151377544},"113":{"tf":1.0},"213":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0}},"s":{"'":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{".":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"83":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}}}},"p":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"z":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}}}},"_":{"df":0,"docs":{},"o":{"df":1,"docs":{"269":{"tf":1.4142135623730951}}}},"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"280":{"tf":1.0},"66":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.0}}}}},"df":35,"docs":{"120":{"tf":2.0},"123":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":2.0},"200":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"213":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":2.449489742783178},"271":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":2.23606797749979},"46":{"tf":2.6457513110645907},"47":{"tf":2.449489742783178},"48":{"tf":1.4142135623730951},"49":{"tf":3.4641016151377544},"62":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.23606797749979},"66":{"tf":2.23606797749979},"67":{"tf":1.0},"94":{"tf":1.4142135623730951},"99":{"tf":1.0}},"i":{"df":1,"docs":{"269":{"tf":1.0}}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":5,"docs":{"35":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"t":{"1":{"8":{"6":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"/":{"b":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"=":{"\"":{"#":{"0":{"0":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"0":{"0":{"0":{"0":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":1,"docs":{"88":{"tf":2.0}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":10,"docs":{"198":{"tf":1.0},"202":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"35":{"tf":1.0},"69":{"tf":1.7320508075688772},"84":{"tf":1.0},"96":{"tf":1.0}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"94":{"tf":1.0}}}}},"n":{"d":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"52":{"tf":1.0}}}}},"df":3,"docs":{"101":{"tf":1.0},"113":{"tf":1.0},"35":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":1,"docs":{"109":{"tf":1.0}},"m":{"df":0,"docs":{},"p":{"df":10,"docs":{"10":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":2.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":9,"docs":{"133":{"tf":1.0},"143":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"164":{"tf":1.4142135623730951},"172":{"tf":1.4142135623730951},"180":{"tf":1.4142135623730951},"186":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"156":{"tf":2.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"k":{"df":4,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"24":{"tf":1.0},"48":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"d":{"df":0,"docs":{},"g":{"df":2,"docs":{"10":{"tf":1.0},"34":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"168":{"tf":1.0},"188":{"tf":1.0},"191":{"tf":1.4142135623730951},"201":{"tf":1.7320508075688772}}}}}}}},"s":{"=":{"3":{"2":{"df":0,"docs":{},"m":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"4":{"df":0,"docs":{},"k":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{")":{"df":0,"docs":{},"—":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"57":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":8,"docs":{"109":{"tf":1.0},"213":{"tf":1.4142135623730951},"29":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"57":{"tf":1.4142135623730951},"8":{"tf":1.0}}}},"u":{"df":26,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.6457513110645907},"108":{"tf":1.0},"112":{"tf":3.0},"113":{"tf":1.7320508075688772},"115":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":1.0},"264":{"tf":1.0},"272":{"tf":2.23606797749979},"35":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":2.449489742783178},"40":{"tf":2.449489742783178}},"g":{"df":6,"docs":{"116":{"tf":1.0},"167":{"tf":1.7320508075688772},"175":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"4":{"tf":1.0},"6":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":62,"docs":{"0":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":2.0},"134":{"tf":2.8284271247461903},"138":{"tf":2.449489742783178},"139":{"tf":3.3166247903554},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.4142135623730951},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.4142135623730951},"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"230":{"tf":1.0},"260":{"tf":1.0},"279":{"tf":2.0},"28":{"tf":1.4142135623730951},"281":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.0},"43":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.0},"55":{"tf":2.0},"56":{"tf":2.0},"57":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":2.0},"60":{"tf":2.23606797749979},"61":{"tf":2.0},"62":{"tf":1.0},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.3166247903554},"66":{"tf":2.6457513110645907},"67":{"tf":2.8284271247461903},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":2.449489742783178},"81":{"tf":1.0},"83":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"92":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"133":{"tf":2.6457513110645907},"61":{"tf":1.0},"70":{"tf":1.0},"8":{"tf":1.0}}}},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":14,"docs":{"122":{"tf":1.0},"225":{"tf":1.0},"25":{"tf":1.0},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":1.0},"43":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"78":{"tf":1.4142135623730951},"96":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"129":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"u":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"=":{"\"":{"0":{"0":{"0":{"0":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":2,"docs":{"118":{"tf":1.4142135623730951},"119":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":1,"docs":{"111":{"tf":1.4142135623730951}}},"i":{"df":2,"docs":{"263":{"tf":1.0},"96":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}}},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"195":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"195":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"5":{"2":{"b":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"133":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951}},"e":{".":{"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"h":{":":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"d":{"a":{"df":1,"docs":{"70":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":6,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":4.358898943540674},"158":{"tf":2.449489742783178},"250":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"128":{"tf":1.0},"52":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"194":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"40":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}}},"p":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"120":{"tf":1.0},"156":{"tf":1.0},"97":{"tf":1.0}}}},"c":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"160":{"tf":1.0},"211":{"tf":1.0},"5":{"tf":1.0}}}}}},"r":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"85":{"tf":1.0},"94":{"tf":1.4142135623730951}}}}}},"df":9,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0}}}}},"d":{"df":7,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":2.23606797749979}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"3":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"155":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"s":{"c":{"a":{"d":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":23,"docs":{"1":{"tf":1.0},"100":{"tf":1.4142135623730951},"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"122":{"tf":1.7320508075688772},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"143":{"tf":1.0},"152":{"tf":1.0},"270":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"3":{"tf":1.0},"52":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951}},"—":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"274":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"150":{"tf":1.0},"202":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"103":{"tf":1.0},"168":{"tf":1.0}}}}},"d":{"df":6,"docs":{"195":{"tf":1.7320508075688772},"202":{"tf":1.0},"66":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"90":{"tf":1.0}}},"df":2,"docs":{"43":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"108":{"tf":1.4142135623730951},"139":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":4.0},"273":{"tf":2.0}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"190":{"tf":1.0}}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"153":{"tf":1.0},"202":{"tf":1.0},"215":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"138":{"tf":1.0},"153":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"153":{"tf":2.449489742783178},"154":{"tf":2.0},"157":{"tf":1.7320508075688772},"201":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":32,"docs":{"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"4":{"tf":2.449489742783178},"56":{"tf":1.4142135623730951},"91":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"2":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951}}}}}}},"n":{"c":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":35,"docs":{"103":{"tf":1.0},"112":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"133":{"tf":1.7320508075688772},"138":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.7320508075688772},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.7320508075688772},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"69":{"tf":1.0},"70":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"94":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"147":{"tf":1.0},"154":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.4142135623730951},"14":{"tf":1.4142135623730951},"162":{"tf":1.4142135623730951},"192":{"tf":1.4142135623730951},"58":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"t":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"k":{"df":24,"docs":{"111":{"tf":1.0},"113":{"tf":1.0},"125":{"tf":1.4142135623730951},"133":{"tf":1.0},"143":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"272":{"tf":1.0},"31":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"86":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"p":{"df":4,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"238":{"tf":1.0},"261":{"tf":1.0}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"211":{"tf":1.0}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":3,"docs":{"74":{"tf":1.0},"76":{"tf":1.0},"92":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"203":{"tf":1.0},"88":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"11":{"tf":1.0},"167":{"tf":1.4142135623730951},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"188":{"tf":1.0},"201":{"tf":1.4142135623730951},"85":{"tf":2.449489742783178}}}}}}}}},"i":{"/":{"c":{"d":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"160":{"tf":1.0},"207":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":2,"docs":{"199":{"tf":1.0},"8":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"238":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"138":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"62":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"k":{"df":4,"docs":{"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"201":{"tf":1.7320508075688772},"62":{"tf":1.0}}}},"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":7,"docs":{"11":{"tf":1.0},"188":{"tf":1.0},"194":{"tf":1.0},"219":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0},"88":{"tf":1.0}}}}}},"k":{"_":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":1,"docs":{"272":{"tf":2.8284271247461903}}},"o":{"c":{"df":0,"docs":{},"k":{"df":7,"docs":{"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":2.8284271247461903},"268":{"tf":2.0},"272":{"tf":7.211102550927978},"273":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"61":{"tf":1.0},"66":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.0},"201":{"tf":1.0}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"u":{"d":{"df":12,"docs":{"11":{"tf":1.0},"13":{"tf":1.4142135623730951},"154":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.4142135623730951},"198":{"tf":1.4142135623730951},"219":{"tf":2.0},"280":{"tf":2.0},"282":{"tf":1.4142135623730951},"39":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"d":{"df":3,"docs":{"195":{"tf":1.7320508075688772},"267":{"tf":1.0},"69":{"tf":1.0}}},"df":2,"docs":{"153":{"tf":1.0},"251":{"tf":1.4142135623730951}}},"o":{"d":{"df":0,"docs":{},"e":{"df":22,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":1.0},"132":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":2.0},"144":{"tf":1.0},"154":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"39":{"tf":1.0},"4":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.4142135623730951},"77":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"59":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":1,"docs":{"92":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"t":{"df":5,"docs":{"1":{"tf":1.0},"134":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":3.0}}}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"n":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}}}}},"m":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"146":{"tf":1.0},"281":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"116":{"tf":1.0},"202":{"tf":1.0},"265":{"tf":1.0},"56":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":36,"docs":{"103":{"tf":1.7320508075688772},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"109":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"197":{"tf":1.0},"201":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.0},"282":{"tf":1.0},"43":{"tf":1.0},"47":{"tf":1.4142135623730951},"49":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.6457513110645907},"76":{"tf":1.0},"81":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":1,"docs":{"10":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"168":{"tf":1.0},"176":{"tf":1.0}}}},"r":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"154":{"tf":1.0}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"142":{"tf":1.0}}}}}}}}}},"df":5,"docs":{"142":{"tf":2.23606797749979},"143":{"tf":1.0},"54":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"c":{"a":{"df":0,"docs":{},"p":{"a":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":0,"docs":{}},"df":5,"docs":{"121":{"tf":1.0},"139":{"tf":1.7320508075688772},"203":{"tf":1.0},"35":{"tf":1.0},"80":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":14,"docs":{"0":{"tf":1.0},"149":{"tf":1.7320508075688772},"154":{"tf":1.0},"159":{"tf":1.7320508075688772},"160":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":1.0},"209":{"tf":1.4142135623730951},"223":{"tf":1.0},"242":{"tf":1.0},"25":{"tf":1.4142135623730951},"39":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":3,"docs":{"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"280":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":6,"docs":{"100":{"tf":2.23606797749979},"26":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"t":{"df":11,"docs":{"106":{"tf":1.0},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"111":{"tf":1.0},"121":{"tf":1.0},"166":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":4.358898943540674},"273":{"tf":1.7320508075688772},"87":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":19,"docs":{"107":{"tf":1.0},"116":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"174":{"tf":1.0},"265":{"tf":1.7320508075688772},"271":{"tf":1.0},"274":{"tf":1.7320508075688772},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"43":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.8284271247461903},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}},"e":{"d":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":10,"docs":{"101":{"tf":1.0},"115":{"tf":1.0},"139":{"tf":1.0},"195":{"tf":1.0},"253":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951}}},"x":{"df":4,"docs":{"104":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"157":{"tf":1.0}}}},"i":{"a":{"df":0,"docs":{},"n":{"c":{"df":3,"docs":{"138":{"tf":1.0},"150":{"tf":1.0},"20":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":2,"docs":{"150":{"tf":1.0},"23":{"tf":1.0}}}},"o":{"df":0,"docs":{},"n":{"df":16,"docs":{"1":{"tf":1.0},"111":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"148":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.7320508075688772},"84":{"tf":1.0}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":5,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"227":{"tf":1.4142135623730951},"52":{"tf":1.0},"92":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":3,"docs":{"20":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.4142135623730951},"281":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"t":{"df":21,"docs":{"111":{"tf":1.0},"13":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"209":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"240":{"tf":1.4142135623730951},"243":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.0},"61":{"tf":1.0},"63":{"tf":1.7320508075688772},"64":{"tf":1.0},"65":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"96":{"tf":1.0},"97":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"100":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"3":{"tf":1.0},"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}}}},"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"a":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"b":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"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":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"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":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"=":{"df":0,"docs":{},"i":{"df":1,"docs":{"266":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"43":{"tf":1.0}}}}},"df":8,"docs":{"130":{"tf":1.0},"142":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"43":{"tf":1.7320508075688772},"44":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":3,"docs":{"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"83":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":50,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"166":{"tf":1.4142135623730951},"19":{"tf":2.0},"190":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"198":{"tf":1.0},"20":{"tf":1.0},"214":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"265":{"tf":1.4142135623730951},"266":{"tf":2.0},"267":{"tf":3.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"29":{"tf":1.7320508075688772},"3":{"tf":1.0},"35":{"tf":2.6457513110645907},"36":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"51":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":2.23606797749979},"76":{"tf":2.23606797749979},"8":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.4142135623730951},"87":{"tf":1.7320508075688772},"90":{"tf":1.0},"93":{"tf":1.7320508075688772},"96":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"282":{"tf":1.0}}}}}},"n":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"x":{"df":0,"docs":{},"i":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"b":{"c":{"df":0,"docs":{},"h":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":2.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"272":{"tf":2.0}},"e":{"c":{"df":0,"docs":{},"t":{"df":20,"docs":{"105":{"tf":3.0},"109":{"tf":1.0},"111":{"tf":2.0},"122":{"tf":1.0},"126":{"tf":1.7320508075688772},"194":{"tf":1.0},"195":{"tf":2.0},"199":{"tf":1.0},"201":{"tf":2.0},"219":{"tf":1.0},"223":{"tf":1.0},"265":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":2.23606797749979},"68":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"105":{"tf":1.0},"111":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"20":{"tf":1.0},"22":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951}}}}},"i":{"d":{"df":8,"docs":{"118":{"tf":1.0},"128":{"tf":1.0},"143":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.0},"51":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":11,"docs":{"133":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.0},"160":{"tf":1.4142135623730951},"272":{"tf":1.0},"50":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"130":{"tf":1.0},"200":{"tf":1.0}},"e":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"v":{"c":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"m":{"a":{"0":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"n":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}},"t":{"df":1,"docs":{"116":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"211":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"134":{"tf":1.0},"156":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":12,"docs":{"113":{"tf":1.4142135623730951},"129":{"tf":1.0},"134":{"tf":1.4142135623730951},"155":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.0},"238":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"57":{"tf":1.4142135623730951},"69":{"tf":1.0},"94":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":3,"docs":{"21":{"tf":1.0},"272":{"tf":1.0},"70":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":8,"docs":{"0":{"tf":1.0},"153":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951},"39":{"tf":1.4142135623730951},"42":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":5,"docs":{"122":{"tf":1.0},"132":{"tf":2.449489742783178},"133":{"tf":1.0},"195":{"tf":1.4142135623730951},"207":{"tf":2.449489742783178}}}}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"1":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"16":{"tf":1.0},"160":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"m":{"d":{"df":1,"docs":{"54":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"133":{"tf":1.0},"59":{"tf":1.0},"93":{"tf":1.0}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":22,"docs":{"103":{"tf":1.0},"11":{"tf":1.7320508075688772},"118":{"tf":1.0},"120":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"158":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"25":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"3":{"tf":1.0},"89":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"@":{"5":{"b":{"2":{"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"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":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"143":{"tf":1.0}}},"t":{"df":1,"docs":{"271":{"tf":1.7320508075688772}}}}}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":8,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"62":{"tf":1.0},"69":{"tf":2.0}}},"y":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":6,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"204":{"tf":1.0},"210":{"tf":1.4142135623730951},"39":{"tf":1.0},"85":{"tf":2.449489742783178}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"118":{"tf":1.0},"126":{"tf":1.0},"199":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"l":{"df":1,"docs":{"150":{"tf":1.0}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"d":{"df":6,"docs":{"129":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"74":{"tf":1.0},"77":{"tf":1.0},"87":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"100":{"tf":1.0},"269":{"tf":1.0}}}},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"282":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"111":{"tf":2.449489742783178},"278":{"tf":1.0},"30":{"tf":1.0}}}}}},"p":{"df":2,"docs":{"199":{"tf":1.0},"43":{"tf":1.0}},"p":{"df":2,"docs":{"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951}}},"u":{"df":12,"docs":{"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"120":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"212":{"tf":1.0},"224":{"tf":1.0},"277":{"tf":1.0},"85":{"tf":1.0},"97":{"tf":1.7320508075688772}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":31,"docs":{"100":{"tf":1.0},"133":{"tf":1.4142135623730951},"149":{"tf":1.0},"151":{"tf":1.4142135623730951},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.7320508075688772},"184":{"tf":1.4142135623730951},"189":{"tf":1.7320508075688772},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"211":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"5":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"62":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"72":{"tf":1.0},"84":{"tf":2.0},"85":{"tf":1.0},"86":{"tf":1.0},"89":{"tf":1.7320508075688772},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"150":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"48":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"c":{"df":2,"docs":{"159":{"tf":1.0},"36":{"tf":1.0}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":12,"docs":{"138":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"52":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":2.449489742783178},"81":{"tf":2.0},"82":{"tf":2.0},"83":{"tf":1.4142135623730951}}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":8,"docs":{"101":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":2.23606797749979},"119":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}},"’":{"df":1,"docs":{"131":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"120":{"tf":1.0},"39":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"254":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":2,"docs":{"155":{"tf":1.7320508075688772},"156":{"tf":1.0}},"i":{"df":3,"docs":{"209":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"132":{"tf":1.0},"183":{"tf":1.0},"189":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":1.0},"265":{"tf":1.0},"27":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.7320508075688772},"59":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"80":{"tf":1.0}}}}}},"v":{"df":1,"docs":{"252":{"tf":1.0}},"e":{"2":{"5":{"5":{"1":{"9":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":11,"docs":{"144":{"tf":1.0},"207":{"tf":1.0},"21":{"tf":1.4142135623730951},"23":{"tf":1.0},"281":{"tf":1.0},"39":{"tf":1.0},"43":{"tf":1.7320508075688772},"70":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"1":{"tf":1.0}}}}}}}},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"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":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":5,"docs":{"192":{"tf":1.0},"198":{"tf":2.449489742783178},"199":{"tf":2.23606797749979},"200":{"tf":2.0},"201":{"tf":1.7320508075688772}}}}}}}}}}},"v":{"d":{"df":3,"docs":{"11":{"tf":1.0},"199":{"tf":2.0},"201":{"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":{"199":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}},"y":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"256":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"149":{"tf":2.0},"151":{"tf":1.0}}}},"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":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":2,"docs":{"70":{"tf":1.0},"72":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"a":{"df":9,"docs":{"147":{"tf":1.7320508075688772},"154":{"tf":1.0},"191":{"tf":1.4142135623730951},"215":{"tf":1.0},"240":{"tf":1.0},"262":{"tf":1.0},"265":{"tf":1.0},"93":{"tf":1.4142135623730951},"96":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":4,"docs":{"160":{"tf":1.0},"199":{"tf":1.0},"212":{"tf":1.0},"39":{"tf":1.0}}}},"y":{"'":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}},"d":{"df":8,"docs":{"107":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"76":{"tf":1.0},"9":{"tf":1.0}}},"df":2,"docs":{"126":{"tf":1.0},"20":{"tf":2.23606797749979}},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":21,"docs":{"10":{"tf":1.0},"105":{"tf":2.449489742783178},"109":{"tf":1.0},"111":{"tf":1.0},"118":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.23606797749979},"27":{"tf":1.0},"28":{"tf":1.0},"48":{"tf":1.0},"59":{"tf":2.23606797749979},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"8":{"tf":1.0},"81":{"tf":1.0},"9":{"tf":2.23606797749979},"90":{"tf":1.7320508075688772}}}}},"c":{"df":1,"docs":{"125":{"tf":1.0}},"i":{"df":0,"docs":{},"s":{"df":29,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":3.1622776601683795},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"211":{"tf":1.7320508075688772},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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":2.0},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.7320508075688772}}}},"k":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"l":{"a":{"df":0,"docs":{},"r":{"df":19,"docs":{"122":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"23":{"tf":1.7320508075688772},"25":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"280":{"tf":2.0},"282":{"tf":2.8284271247461903},"283":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"56":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"155":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"155":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":23,"docs":{"103":{"tf":2.0},"105":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":1.4142135623730951},"123":{"tf":1.0},"130":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"280":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.4142135623730951},"70":{"tf":1.0},"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}}}}},"df":1,"docs":{"105":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":2,"docs":{"10":{"tf":1.0},"240":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.7320508075688772},"105":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"15":{"tf":1.0},"153":{"tf":1.0},"20":{"tf":1.4142135623730951},"224":{"tf":1.0},"23":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"253":{"tf":1.0},"269":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"50":{"tf":1.0},"51":{"tf":1.0},"55":{"tf":1.0},"59":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"15":{"tf":1.0},"273":{"tf":1.0}}}}}}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"138":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":5,"docs":{"112":{"tf":1.4142135623730951},"143":{"tf":1.0},"196":{"tf":1.0},"267":{"tf":4.69041575982343},"273":{"tf":1.7320508075688772}}}},"i":{"c":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"132":{"tf":1.0},"133":{"tf":1.0},"149":{"tf":1.0},"207":{"tf":1.0}}},"y":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"207":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}}}}},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"138":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"170":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":6,"docs":{"10":{"tf":1.0},"122":{"tf":1.0},"174":{"tf":1.0},"279":{"tf":1.0},"5":{"tf":1.4142135623730951},"92":{"tf":1.0}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":4,"docs":{"122":{"tf":1.0},"191":{"tf":1.0},"48":{"tf":1.0},"98":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"i":{"df":1,"docs":{"74":{"tf":1.0}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"240":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":26,"docs":{"106":{"tf":1.0},"116":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":1.0},"148":{"tf":1.0},"150":{"tf":1.7320508075688772},"160":{"tf":1.4142135623730951},"19":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"259":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.449489742783178},"274":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0},"89":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"y":{"df":10,"docs":{"1":{"tf":1.0},"132":{"tf":2.0},"15":{"tf":1.4142135623730951},"154":{"tf":1.0},"207":{"tf":1.4142135623730951},"282":{"tf":1.0},"36":{"tf":1.0},"59":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"—":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":2,"docs":{"144":{"tf":1.0},"89":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":12,"docs":{"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"110":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"278":{"tf":1.0},"35":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"56":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":5,"docs":{"182":{"tf":1.0},"20":{"tf":1.0},"265":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":2.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":15,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":2.0},"211":{"tf":1.0},"236":{"tf":1.0},"254":{"tf":1.0},"27":{"tf":1.0},"279":{"tf":1.4142135623730951},"3":{"tf":1.7320508075688772},"30":{"tf":1.0},"34":{"tf":1.0},"96":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":8,"docs":{"100":{"tf":1.0},"111":{"tf":1.4142135623730951},"219":{"tf":1.0},"5":{"tf":1.4142135623730951},"59":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":2.23606797749979},"88":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"134":{"tf":1.4142135623730951}}}}}},"t":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":12,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"142":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"265":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"221":{"tf":1.0},"36":{"tf":1.0},"43":{"tf":1.7320508075688772},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"281":{"tf":1.0},"93":{"tf":1.0}}}}}}}},"v":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"1":{"df":1,"docs":{"65":{"tf":1.0}}},"2":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"s":{"d":{"a":{"df":1,"docs":{"194":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"9":{"tf":1.0}}},"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"s":{"b":{"0":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"113":{"tf":1.0}}}}}}},"df":1,"docs":{"125":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":71,"docs":{"0":{"tf":1.4142135623730951},"10":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"15":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"21":{"tf":1.0},"25":{"tf":1.4142135623730951},"260":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"3":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":3.1622776601683795},"6":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.4142135623730951},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":2.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"9":{"tf":1.4142135623730951},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"i":{"c":{"df":93,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"10":{"tf":2.23606797749979},"100":{"tf":1.7320508075688772},"101":{"tf":3.1622776601683795},"102":{"tf":3.0},"103":{"tf":3.7416573867739413},"104":{"tf":1.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.23606797749979},"108":{"tf":2.6457513110645907},"109":{"tf":1.4142135623730951},"11":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":3.0},"112":{"tf":3.1622776601683795},"113":{"tf":4.123105625617661},"114":{"tf":3.3166247903554},"115":{"tf":2.8284271247461903},"116":{"tf":2.8284271247461903},"117":{"tf":1.4142135623730951},"118":{"tf":2.8284271247461903},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":2.0},"125":{"tf":1.0},"126":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.4142135623730951},"130":{"tf":2.8284271247461903},"131":{"tf":1.7320508075688772},"15":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"176":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"198":{"tf":2.0},"199":{"tf":1.0},"2":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":2.0},"265":{"tf":4.123105625617661},"267":{"tf":3.1622776601683795},"268":{"tf":2.6457513110645907},"269":{"tf":1.4142135623730951},"270":{"tf":4.123105625617661},"271":{"tf":3.605551275463989},"272":{"tf":4.898979485566356},"273":{"tf":3.1622776601683795},"274":{"tf":2.8284271247461903},"277":{"tf":3.4641016151377544},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":2.8284271247461903},"29":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.6457513110645907},"44":{"tf":1.0},"5":{"tf":1.4142135623730951},"56":{"tf":1.0},"57":{"tf":2.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":2.449489742783178},"66":{"tf":1.0},"67":{"tf":1.0},"7":{"tf":2.0},"76":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.6457513110645907},"96":{"tf":1.7320508075688772},"97":{"tf":1.4142135623730951},"99":{"tf":1.0}},"e":{"'":{"df":3,"docs":{"100":{"tf":1.0},"118":{"tf":1.0},"281":{"tf":1.0}}},"(":{"df":1,"docs":{"35":{"tf":1.0}}},",":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":3,"docs":{"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"102":{"tf":1.0},"103":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"79":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{":":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"x":{"8":{"6":{"_":{"6":{"4":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"=":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":2,"docs":{"214":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"203":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":7,"docs":{"13":{"tf":1.0},"134":{"tf":1.0},"158":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"196":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"204":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"190":{"tf":1.0},"196":{"tf":1.0},"25":{"tf":1.0},"279":{"tf":1.0},"57":{"tf":1.0},"69":{"tf":1.0},"80":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"94":{"tf":1.4142135623730951}}}},"i":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"282":{"tf":1.0},"36":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"155":{"tf":1.4142135623730951},"252":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"150":{"tf":1.0},"209":{"tf":1.0},"215":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":5,"docs":{"15":{"tf":1.0},"156":{"tf":1.0},"215":{"tf":1.0},"34":{"tf":1.4142135623730951},"67":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":8,"docs":{"130":{"tf":1.0},"153":{"tf":1.0},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"274":{"tf":1.0},"62":{"tf":1.4142135623730951},"69":{"tf":1.7320508075688772}}}}}}},"df":0,"docs":{}}},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":8,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"115":{"tf":2.0},"116":{"tf":1.0},"123":{"tf":1.0},"166":{"tf":1.7320508075688772},"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"168":{"tf":1.0}}}},"df":0,"docs":{}}}},"v":{"df":1,"docs":{"221":{"tf":1.0}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"12":{"tf":1.0},"20":{"tf":1.0},"283":{"tf":1.4142135623730951},"40":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":10,"docs":{"133":{"tf":2.23606797749979},"195":{"tf":1.0},"202":{"tf":1.0},"279":{"tf":2.0},"281":{"tf":2.0},"282":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"90":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"168":{"tf":1.0},"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"26":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":9,"docs":{"132":{"tf":1.7320508075688772},"133":{"tf":1.0},"15":{"tf":1.0},"153":{"tf":1.0},"230":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":1,"docs":{"281":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"121":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":3,"docs":{"215":{"tf":1.4142135623730951},"35":{"tf":1.0},"97":{"tf":1.0}}},"df":1,"docs":{"31":{"tf":1.0}}},"n":{"df":1,"docs":{"199":{"tf":1.0}}},"o":{"c":{"df":1,"docs":{"142":{"tf":1.0}},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":18,"docs":{"100":{"tf":1.0},"104":{"tf":1.4142135623730951},"110":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"145":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"198":{"tf":1.0},"20":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"29":{"tf":1.0},"54":{"tf":1.0}}}}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}}},"df":2,"docs":{"115":{"tf":1.0},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"0":{"df":1,"docs":{"267":{"tf":1.0}}},"a":{"df":2,"docs":{"267":{"tf":1.0},"268":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"52":{"tf":1.0}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"n":{"'":{"df":0,"docs":{},"t":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":14,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.0},"147":{"tf":1.0},"157":{"tf":1.0},"182":{"tf":1.0},"265":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951},"41":{"tf":1.0},"65":{"tf":1.0}}},"’":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"w":{"df":0,"docs":{},"n":{"df":3,"docs":{"111":{"tf":1.0},"24":{"tf":1.0},"62":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":7,"docs":{"105":{"tf":1.0},"133":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"194":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"281":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"r":{"a":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":7,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"194":{"tf":1.4142135623730951},"239":{"tf":1.0},"277":{"tf":1.0}},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":3,"docs":{"103":{"tf":3.4641016151377544},"118":{"tf":2.23606797749979},"119":{"tf":1.4142135623730951}}}}},"df":17,"docs":{"101":{"tf":2.0},"102":{"tf":2.0},"103":{"tf":2.23606797749979},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.7320508075688772},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.0},"279":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"40":{"tf":1.7320508075688772},"99":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"57":{"tf":1.0}}}}}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"2":{"tf":1.0}}}},"p":{"df":1,"docs":{"57":{"tf":1.0}}}}},"t":{"b":{"df":10,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0},"126":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0}}},"c":{"df":3,"docs":{"271":{"tf":1.4142135623730951},"275":{"tf":1.0},"276":{"tf":1.0}}},"df":3,"docs":{"271":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":3,"docs":{"101":{"tf":1.0},"145":{"tf":1.0},"157":{"tf":1.0}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":4,"docs":{"107":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0}}}},"p":{"df":1,"docs":{"271":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"134":{"tf":1.0},"266":{"tf":1.0},"269":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"72":{"tf":1.0},"76":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":4,"docs":{"214":{"tf":1.0},"281":{"tf":1.0},"35":{"tf":1.7320508075688772},"40":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"g":{"df":5,"docs":{"7":{"tf":1.0},"79":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":1.0}}}},"2":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"a":{"c":{"df":0,"docs":{},"h":{"df":11,"docs":{"113":{"tf":1.0},"114":{"tf":1.0},"129":{"tf":1.0},"134":{"tf":2.0},"160":{"tf":1.4142135623730951},"161":{"tf":1.0},"191":{"tf":1.0},"202":{"tf":1.0},"85":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"15":{"tf":1.0},"44":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"114":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0}}}}},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"k":{"df":2,"docs":{"118":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"s":{"df":2,"docs":{"2":{"tf":1.0},"89":{"tf":1.0}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"103":{"tf":1.0},"118":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"c":{"c":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":8,"docs":{"102":{"tf":2.0},"109":{"tf":1.4142135623730951},"113":{"tf":1.4142135623730951},"126":{"tf":1.4142135623730951},"270":{"tf":3.0},"277":{"tf":2.449489742783178},"70":{"tf":1.0},"76":{"tf":2.0}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"2":{"tf":1.0},"96":{"tf":1.0}}}}}}}}}},"d":{"2":{"5":{"5":{"1":{"9":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"s":{"a":{"df":4,"docs":{"144":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"252":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":11,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"5":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"87":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":4,"docs":{"105":{"tf":1.0},"112":{"tf":1.7320508075688772},"130":{"tf":1.0},"216":{"tf":1.4142135623730951}},"f":{"df":1,"docs":{"203":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"103":{"tf":1.0},"270":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"0":{"tf":1.0},"4":{"tf":1.0}}}}}},"i":{"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"l":{"a":{"df":0,"docs":{},"n":{"0":{"6":{"7":{"c":{":":{"0":{"0":{"df":1,"docs":{"94":{"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":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"238":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"11":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.7320508075688772},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.7320508075688772},"86":{"tf":1.4142135623730951}}}}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"160":{"tf":1.0},"21":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"96":{"tf":1.0}}},"df":0,"docs":{}}}},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"223":{"tf":1.0}}}}},"b":{"df":1,"docs":{"281":{"tf":1.0}},"e":{"d":{"df":7,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"213":{"tf":1.0},"216":{"tf":1.0},"83":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"202":{"tf":1.0}}}}},"m":{"c":{"df":3,"docs":{"107":{"tf":1.0},"216":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"139":{"tf":1.0},"195":{"tf":1.0},"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"df":4,"docs":{"198":{"tf":1.0},"235":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.7320508075688772}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":34,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"112":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"123":{"tf":1.0},"13":{"tf":1.0},"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":2.0},"154":{"tf":1.0},"19":{"tf":1.0},"190":{"tf":1.0},"2":{"tf":1.4142135623730951},"201":{"tf":1.0},"214":{"tf":1.0},"25":{"tf":1.7320508075688772},"27":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"281":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.7320508075688772},"48":{"tf":1.0},"49":{"tf":2.23606797749979},"5":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"83":{"tf":1.7320508075688772},"92":{"tf":1.0},"96":{"tf":1.0},"98":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"70":{"tf":2.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":6,"docs":{"134":{"tf":1.0},"147":{"tf":1.7320508075688772},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"256":{"tf":1.0},"261":{"tf":1.0}}}}}}},"d":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.4142135623730951},"138":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"161":{"tf":1.0},"202":{"tf":1.0},"208":{"tf":1.4142135623730951},"217":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"57":{"tf":1.4142135623730951}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}}},"t":{"0":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"_":{"a":{"df":0,"docs":{},"h":{"b":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{},"s":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"x":{"c":{"_":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907},"273":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"1":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"_":{"2":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"198":{"tf":1.0},"36":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"100":{"tf":1.0},"116":{"tf":1.7320508075688772},"62":{"tf":1.0},"80":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"49":{"tf":1.4142135623730951}}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"144":{"tf":1.0},"159":{"tf":1.0},"56":{"tf":1.0},"74":{"tf":1.0},"82":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"191":{"tf":1.0},"263":{"tf":1.0}}}}}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}},"t":{"df":0,"docs":{},"i":{"df":3,"docs":{"153":{"tf":1.7320508075688772},"154":{"tf":1.0},"157":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"267":{"tf":1.0}}}}},"v":{"df":2,"docs":{"199":{"tf":1.0},"73":{"tf":1.0}},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":19,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"134":{"tf":1.0},"139":{"tf":1.0},"169":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"194":{"tf":1.0},"260":{"tf":1.0},"277":{"tf":1.0},"283":{"tf":1.0},"4":{"tf":1.0},"59":{"tf":1.0},"8":{"tf":1.0},"87":{"tf":2.449489742783178},"88":{"tf":1.0},"9":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"c":{".":{"\"":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"\"":{".":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{"67":{"tf":1.7320508075688772}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":7,"docs":{"116":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.4142135623730951},"72":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"p":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"154":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0},"69":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"c":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":1,"docs":{"70":{"tf":1.0}},"o":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"69":{"tf":2.0},"70":{"tf":1.0}}}}}},"df":1,"docs":{"53":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"@":{"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":17,"docs":{"174":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":3.1622776601683795},"266":{"tf":1.0},"267":{"tf":2.449489742783178},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.4142135623730951}}}}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":3,"docs":{"203":{"tf":1.0},"217":{"tf":1.4142135623730951},"57":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":1,"docs":{"156":{"tf":1.0}}}},"v":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":5,"docs":{"10":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"240":{"tf":1.0},"3":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"138":{"tf":1.0},"19":{"tf":1.0},"265":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"92":{"tf":1.0}},"t":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}}}},"i":{"d":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":37,"docs":{"102":{"tf":1.0},"103":{"tf":1.0},"108":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"197":{"tf":1.4142135623730951},"202":{"tf":1.4142135623730951},"203":{"tf":2.0},"236":{"tf":1.0},"265":{"tf":1.0},"277":{"tf":1.4142135623730951},"281":{"tf":1.0},"283":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.4142135623730951},"90":{"tf":2.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":2.0},"94":{"tf":1.4142135623730951}},"e":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"90":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"105":{"tf":1.0},"208":{"tf":1.0}}},"p":{"df":0,"docs":{},"t":{"df":2,"docs":{"203":{"tf":1.0},"25":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"u":{"d":{"df":1,"docs":{"174":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"130":{"tf":1.0}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"160":{"tf":1.0},"86":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"145":{"tf":1.0},"93":{"tf":1.0}}}},"t":{"df":1,"docs":{"76":{"tf":1.4142135623730951}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"118":{"tf":1.0},"138":{"tf":1.0},"45":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"264":{"tf":1.0},"60":{"tf":1.0}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}}}}},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"152":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951}}}},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":5,"docs":{"102":{"tf":2.0},"103":{"tf":1.7320508075688772},"113":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0}}}},"s":{"df":1,"docs":{"34":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"234":{"tf":1.0}}}}}}},"t":{"4":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"116":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":4,"docs":{"156":{"tf":1.0},"243":{"tf":1.4142135623730951},"4":{"tf":1.0},"97":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}},"n":{"df":4,"docs":{"168":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.4142135623730951}}}}},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"t":{"df":3,"docs":{"108":{"tf":1.0},"191":{"tf":1.0},"199":{"tf":1.4142135623730951}}}},"df":3,"docs":{"145":{"tf":1.0},"146":{"tf":1.0},"199":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"141":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"70":{"tf":1.0},"80":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"43":{"tf":2.6457513110645907},"44":{"tf":1.0},"72":{"tf":1.0}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}}},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"111":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"b":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"4":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":2,"docs":{"70":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"139":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"44":{"tf":1.0}}}}}},"r":{"a":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"y":{"a":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"59":{"tf":1.4142135623730951},"9":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"4":{"tf":1.0},"54":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"i":{"df":2,"docs":{"202":{"tf":1.0},"203":{"tf":1.0}}}},"d":{"df":0,"docs":{},"t":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":2,"docs":{"108":{"tf":1.0},"199":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"19":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":20,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"103":{"tf":1.0},"11":{"tf":1.4142135623730951},"12":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":2.0},"188":{"tf":1.0},"3":{"tf":1.0},"46":{"tf":1.0},"48":{"tf":1.0},"5":{"tf":1.7320508075688772},"6":{"tf":1.4142135623730951},"7":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"8":{"tf":1.4142135623730951},"9":{"tf":1.4142135623730951},"98":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"201":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}}}}}}}}},"df":0,"docs":{}}}}}}},"c":{"1":{"df":4,"docs":{"265":{"tf":1.4142135623730951},"267":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"2":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"c":{"c":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":1.0}}},"_":{"df":0,"docs":{},"m":{"a":{"c":{"0":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}}},"1":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"r":{"a":{"df":2,"docs":{"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"m":{"a":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"w":{"df":6,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"202":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0}}}},"i":{"df":4,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"0":{"tf":1.0},"107":{"tf":1.0},"93":{"tf":1.0}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"l":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"=":{"\"":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"$":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"c":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"df":0,"docs":{}}}},"df":27,"docs":{"105":{"tf":2.0},"107":{"tf":1.0},"109":{"tf":1.0},"129":{"tf":1.4142135623730951},"131":{"tf":1.4142135623730951},"133":{"tf":1.4142135623730951},"160":{"tf":1.7320508075688772},"182":{"tf":1.0},"194":{"tf":1.4142135623730951},"196":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"200":{"tf":1.0},"203":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":3.0},"86":{"tf":1.0},"87":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":5,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.7320508075688772},"9":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"265":{"tf":1.0},"273":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"d":{"df":5,"docs":{"199":{"tf":2.0},"20":{"tf":1.0},"204":{"tf":1.0},"268":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"123":{"tf":1.0},"195":{"tf":1.4142135623730951},"43":{"tf":1.0},"76":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"35":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"218":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"50":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":16,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"160":{"tf":1.7320508075688772},"188":{"tf":1.0},"196":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"267":{"tf":1.0},"277":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}}},"x":{"df":14,"docs":{"135":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":2.6457513110645907},"160":{"tf":2.6457513110645907},"166":{"tf":1.0},"167":{"tf":1.7320508075688772},"168":{"tf":1.0},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"199":{"tf":1.0},"272":{"tf":2.8284271247461903},"44":{"tf":1.0},"56":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"280":{"tf":1.0},"90":{"tf":1.0}}}}}},"df":8,"docs":{"160":{"tf":1.7320508075688772},"280":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951}},"s":{".":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"131":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"h":{"df":6,"docs":{"107":{"tf":1.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"19":{"tf":1.0},"23":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"df":1,"docs":{"203":{"tf":1.0}}},"o":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"76":{"tf":1.7320508075688772},"79":{"tf":1.0}},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"76":{"tf":1.0},"79":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"n":{"df":1,"docs":{"195":{"tf":1.0}}},"o":{"c":{"df":0,"docs":{},"u":{"df":3,"docs":{"0":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"203":{"tf":1.0}},"s":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"194":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":49,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"123":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.0},"143":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"20":{"tf":1.7320508075688772},"200":{"tf":1.0},"201":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.0},"3":{"tf":1.0},"34":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0},"50":{"tf":1.0},"54":{"tf":1.0},"61":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"7":{"tf":1.0},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.0},"85":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.4142135623730951},"97":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"r":{"b":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"143":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}}},"k":{"df":2,"docs":{"133":{"tf":1.0},"257":{"tf":1.0}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}},"t":{"df":4,"docs":{"149":{"tf":2.449489742783178},"152":{"tf":1.0},"271":{"tf":2.23606797749979},"65":{"tf":1.0}},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}},"df":4,"docs":{"202":{"tf":2.0},"265":{"tf":1.0},"274":{"tf":1.4142135623730951},"80":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"129":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"243":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}},"u":{"df":0,"docs":{},"n":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"121":{"tf":1.0},"149":{"tf":1.0}}}},"df":6,"docs":{"129":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951},"43":{"tf":1.0},"88":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"88":{"tf":1.7320508075688772}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":18,"docs":{"0":{"tf":1.4142135623730951},"132":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"150":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"2":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":2,"docs":{"253":{"tf":1.0},"59":{"tf":1.0}},"s":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"267":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":1,"docs":{"8":{"tf":1.0}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"272":{"tf":2.6457513110645907}}},"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"194":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"277":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"271":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"s":{"=":{"$":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"126":{"tf":1.0}},"l":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"6":{"df":0,"docs":{},"s":{"df":0,"docs":{},"x":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}}}}},"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"272":{"tf":2.6457513110645907},"273":{"tf":1.4142135623730951}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"273":{"tf":1.0}}}}},"s":{"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":8,"docs":{"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"265":{"tf":1.4142135623730951},"273":{"tf":1.0},"274":{"tf":1.4142135623730951},"61":{"tf":1.0},"9":{"tf":1.0}},"i":{"df":6,"docs":{"116":{"tf":1.0},"138":{"tf":1.0},"190":{"tf":1.0},"238":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0}}}}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":10,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"19":{"tf":1.0},"211":{"tf":1.4142135623730951},"212":{"tf":1.0},"238":{"tf":1.0},"245":{"tf":1.0},"265":{"tf":1.4142135623730951},"283":{"tf":1.0},"42":{"tf":1.0}}}}}}},"d":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"45":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":10,"docs":{"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"281":{"tf":1.0},"29":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"105":{"tf":1.0}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"121":{"tf":1.0},"122":{"tf":1.0},"156":{"tf":1.0},"82":{"tf":1.4142135623730951}}}}}},"w":{"df":3,"docs":{"123":{"tf":1.0},"218":{"tf":1.4142135623730951},"49":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"l":{"a":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"176":{"tf":1.0},"184":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"11":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"219":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"283":{"tf":1.0}}}},"c":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"1":{"1":{"df":2,"docs":{"59":{"tf":1.0},"64":{"tf":1.0}}},"df":0,"docs":{}},"df":7,"docs":{"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"191":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"76":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}}}},"df":48,"docs":{"0":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":2.0},"119":{"tf":1.0},"122":{"tf":1.0},"128":{"tf":1.0},"130":{"tf":2.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.4142135623730951},"139":{"tf":1.0},"15":{"tf":1.7320508075688772},"151":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"235":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.0},"48":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.7320508075688772},"80":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":1.0}}}}},"t":{"df":3,"docs":{"194":{"tf":1.4142135623730951},"199":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.7320508075688772}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"'":{"df":2,"docs":{"281":{"tf":1.0},"39":{"tf":1.0}}},".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"92":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"76":{"tf":1.0}}}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"<":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"44":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":113,"docs":{"0":{"tf":2.8284271247461903},"1":{"tf":1.4142135623730951},"100":{"tf":1.4142135623730951},"121":{"tf":1.0},"123":{"tf":1.0},"128":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.0},"132":{"tf":1.0},"15":{"tf":1.0},"150":{"tf":1.7320508075688772},"151":{"tf":2.449489742783178},"156":{"tf":1.4142135623730951},"159":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"160":{"tf":3.4641016151377544},"161":{"tf":2.0},"162":{"tf":2.0},"163":{"tf":1.7320508075688772},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":2.449489742783178},"167":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"169":{"tf":1.0},"170":{"tf":3.872983346207417},"171":{"tf":1.7320508075688772},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":2.23606797749979},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":3.1622776601683795},"179":{"tf":1.7320508075688772},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":2.449489742783178},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"185":{"tf":1.7320508075688772},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":2.23606797749979},"189":{"tf":1.0},"19":{"tf":2.0},"190":{"tf":1.4142135623730951},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.23606797749979},"194":{"tf":1.4142135623730951},"195":{"tf":2.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":2.0},"199":{"tf":2.0},"2":{"tf":2.23606797749979},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"206":{"tf":1.7320508075688772},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"278":{"tf":1.7320508075688772},"279":{"tf":3.4641016151377544},"28":{"tf":1.4142135623730951},"280":{"tf":1.0},"281":{"tf":2.8284271247461903},"282":{"tf":1.4142135623730951},"29":{"tf":1.0},"3":{"tf":2.449489742783178},"30":{"tf":1.0},"31":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"41":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":3.0},"44":{"tf":2.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.7320508075688772},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.4142135623730951},"61":{"tf":3.0},"62":{"tf":2.6457513110645907},"63":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"65":{"tf":3.0},"66":{"tf":2.23606797749979},"67":{"tf":2.449489742783178},"7":{"tf":1.0},"76":{"tf":2.0},"8":{"tf":1.0},"80":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":3.605551275463989},"90":{"tf":3.1622776601683795},"91":{"tf":1.7320508075688772},"92":{"tf":2.23606797749979},"93":{"tf":2.449489742783178},"94":{"tf":1.7320508075688772},"95":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"b":{"df":1,"docs":{"116":{"tf":1.0}}},"c":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"a":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"p":{"3":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"t":{"+":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{":":{"/":{"/":{"df":0,"docs":{},"~":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":8,"docs":{"116":{"tf":1.0},"142":{"tf":1.0},"280":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.4142135623730951},"61":{"tf":1.0},"66":{"tf":1.0},"89":{"tf":1.0}},"h":{"df":0,"docs":{},"u":{"b":{":":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"#":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"63":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"64":{"tf":1.0}}}}}}}},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"142":{"tf":1.0},"143":{"tf":1.0},"204":{"tf":1.0}}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"109":{"tf":1.0},"110":{"tf":1.0},"118":{"tf":1.0},"271":{"tf":1.0},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"270":{"tf":1.0},"281":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"i":{"b":{"c":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"b":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"142":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":62,"docs":{"202":{"tf":2.0},"203":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.0},"206":{"tf":1.0},"207":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"210":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"216":{"tf":1.0},"217":{"tf":1.0},"218":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"221":{"tf":1.0},"222":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"228":{"tf":1.0},"229":{"tf":1.0},"230":{"tf":1.0},"231":{"tf":1.0},"232":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"235":{"tf":1.0},"236":{"tf":1.0},"237":{"tf":1.0},"238":{"tf":1.0},"239":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0},"243":{"tf":1.0},"244":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"248":{"tf":1.0},"249":{"tf":1.0},"250":{"tf":1.0},"251":{"tf":1.0},"252":{"tf":1.0},"253":{"tf":1.0},"254":{"tf":1.0},"255":{"tf":1.0},"256":{"tf":1.0},"257":{"tf":1.0},"258":{"tf":1.0},"259":{"tf":1.0},"260":{"tf":1.0},"261":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"253":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"o":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"132":{"tf":1.0},"39":{"tf":1.0}}}},"df":7,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"195":{"tf":1.4142135623730951},"200":{"tf":1.0},"265":{"tf":1.0},"272":{"tf":1.4142135623730951},"69":{"tf":1.0}},"e":{"df":1,"docs":{"57":{"tf":1.0}}},"o":{"d":{"df":4,"docs":{"111":{"tf":1.0},"272":{"tf":1.0},"54":{"tf":1.0},"80":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":7,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"198":{"tf":1.0},"219":{"tf":1.4142135623730951}}}}}},"p":{"df":0,"docs":{},"g":{"df":2,"docs":{"142":{"tf":1.4142135623730951},"253":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"o":{"_":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"267":{"tf":2.0},"272":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"267":{"tf":3.4641016151377544}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"267":{"tf":1.4142135623730951},"272":{"tf":1.0}}}},"u":{"df":6,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"15":{"tf":1.0},"9":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"c":{"df":13,"docs":{"113":{"tf":1.0},"116":{"tf":1.4142135623730951},"15":{"tf":2.0},"174":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.0},"26":{"tf":2.23606797749979},"280":{"tf":1.0},"281":{"tf":1.0},"57":{"tf":1.0},"86":{"tf":1.0},"92":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{".":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"86":{"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":{},"p":{"df":2,"docs":{"125":{"tf":1.0},"94":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"121":{"tf":1.0}}}}}}},"df":0,"docs":{}},"p":{"a":{"d":{"d":{"df":1,"docs":{"199":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"112":{"tf":3.0},"113":{"tf":2.23606797749979},"114":{"tf":1.0},"118":{"tf":1.0},"204":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"70":{"tf":1.4142135623730951}}}},"w":{"df":1,"docs":{"149":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"u":{"a":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951}}}}}},"d":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"(":{"df":1,"docs":{"25":{"tf":1.0}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"275":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"\"":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"277":{"tf":1.0}}}},"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":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"275":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"=":{"\"":{"0":{"0":{":":{"0":{"8":{".":{"0":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":31,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.7320508075688772},"109":{"tf":2.23606797749979},"112":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"118":{"tf":1.4142135623730951},"121":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"13":{"tf":1.0},"15":{"tf":1.0},"25":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":2.449489742783178},"274":{"tf":1.0},"275":{"tf":1.4142135623730951},"277":{"tf":1.7320508075688772},"279":{"tf":1.0},"36":{"tf":1.0},"40":{"tf":1.4142135623730951},"42":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.7320508075688772}}}}},"i":{"d":{"a":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"265":{"tf":1.0},"282":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"104":{"tf":1.0},"111":{"tf":1.0},"49":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"283":{"tf":1.0},"54":{"tf":1.4142135623730951},"59":{"tf":1.0}}}}}}},"df":12,"docs":{"100":{"tf":1.4142135623730951},"111":{"tf":1.0},"15":{"tf":2.0},"191":{"tf":1.0},"20":{"tf":1.0},"220":{"tf":1.4142135623730951},"51":{"tf":1.7320508075688772},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"86":{"tf":1.4142135623730951},"87":{"tf":1.0}}}}}},"df":6,"docs":{"10":{"tf":1.4142135623730951},"166":{"tf":1.0},"174":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.7320508075688772}}}}}}},"h":{"a":{"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"269":{"tf":1.0},"39":{"tf":1.0}},"l":{"df":8,"docs":{"118":{"tf":1.0},"120":{"tf":1.0},"212":{"tf":1.0},"267":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"128":{"tf":1.0},"282":{"tf":1.0}}}}}},"r":{"d":{"df":1,"docs":{"116":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":13,"docs":{"13":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.0},"3":{"tf":1.0},"41":{"tf":1.7320508075688772},"42":{"tf":1.4142135623730951},"43":{"tf":2.449489742783178},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":36,"docs":{"103":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.4142135623730951},"155":{"tf":1.7320508075688772},"165":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"2":{"tf":1.0},"212":{"tf":1.0},"236":{"tf":1.0},"242":{"tf":1.0},"254":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.4142135623730951},"3":{"tf":1.0},"35":{"tf":2.23606797749979},"39":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"8":{"tf":1.7320508075688772},"84":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"123":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"91":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"a":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"105":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"70":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"13":{"tf":1.0},"15":{"tf":1.7320508075688772},"51":{"tf":1.0},"57":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":3,"docs":{"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":1,"docs":{"106":{"tf":1.0}}}},"p":{"df":3,"docs":{"116":{"tf":1.0},"149":{"tf":1.0},"89":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"e":{"df":8,"docs":{"112":{"tf":1.0},"130":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"280":{"tf":1.0},"40":{"tf":1.0},"70":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"138":{"tf":1.0},"139":{"tf":1.0}}}}}}},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"191":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"153":{"tf":1.0}},"i":{"df":3,"docs":{"154":{"tf":1.0},"157":{"tf":2.8284271247461903},"158":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":6,"docs":{"13":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.0},"272":{"tf":1.0},"34":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":4,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"91":{"tf":1.0}}}}}}},"t":{"df":1,"docs":{"68":{"tf":1.0}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"\\":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"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":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"=":{"$":{"df":0,"docs":{},"p":{"df":0,"docs":{},"w":{"d":{"df":1,"docs":{"200":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":1,"docs":{"69":{"tf":1.0}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"0":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"276":{"tf":1.0},"277":{"tf":1.0}}},"df":3,"docs":{"265":{"tf":1.0},"274":{"tf":1.0},"276":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"276":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"62":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"199":{"tf":1.0}},"e":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":1,"docs":{"199":{"tf":2.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":73,"docs":{"1":{"tf":1.0},"10":{"tf":2.0},"101":{"tf":1.7320508075688772},"107":{"tf":1.7320508075688772},"108":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"123":{"tf":1.0},"125":{"tf":2.6457513110645907},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"138":{"tf":1.0},"14":{"tf":1.0},"15":{"tf":3.605551275463989},"16":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"17":{"tf":1.7320508075688772},"176":{"tf":2.0},"18":{"tf":1.0},"188":{"tf":2.0},"19":{"tf":2.0},"199":{"tf":2.0},"20":{"tf":2.8284271247461903},"200":{"tf":1.0},"21":{"tf":2.0},"214":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.7320508075688772},"24":{"tf":1.7320508075688772},"25":{"tf":2.8284271247461903},"26":{"tf":1.4142135623730951},"265":{"tf":2.449489742783178},"266":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.7320508075688772},"272":{"tf":2.23606797749979},"273":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.0},"28":{"tf":2.23606797749979},"29":{"tf":1.4142135623730951},"30":{"tf":1.4142135623730951},"31":{"tf":1.4142135623730951},"34":{"tf":1.7320508075688772},"35":{"tf":2.0},"36":{"tf":1.4142135623730951},"40":{"tf":1.7320508075688772},"42":{"tf":1.0},"44":{"tf":2.23606797749979},"50":{"tf":2.23606797749979},"51":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":2.23606797749979},"61":{"tf":1.0},"62":{"tf":1.4142135623730951},"65":{"tf":1.0},"69":{"tf":1.0},"83":{"tf":1.4142135623730951},"84":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"9":{"tf":2.0},"94":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":3,"docs":{"155":{"tf":2.0},"156":{"tf":1.7320508075688772},"254":{"tf":1.4142135623730951}}},"s":{"df":1,"docs":{"67":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{":":{"/":{"/":{"a":{"d":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"211":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"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":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"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":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"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":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"g":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"e":{"d":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}}},"o":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"245":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"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":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"b":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"j":{"df":0,"docs":{},"k":{"df":0,"docs":{},"r":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"226":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"227":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"55":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"39":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":5,"docs":{"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"182":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":2,"docs":{"60":{"tf":1.0},"61":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"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":{}}}}},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{":":{"8":{"4":{"4":{"3":{"df":1,"docs":{"201":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"a":{"d":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"61":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"/":{"a":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"61":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"#":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"61":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"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":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"230":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"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":{},"i":{"a":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"2":{"0":{"2":{"2":{"/":{"0":{"5":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"152":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"df":0,"docs":{},"e":{"c":{"/":{"df":0,"docs":{},"v":{"0":{".":{"1":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"262":{"tf":1.0}}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":2,"docs":{"136":{"tf":1.0},"263":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"v":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"w":{"df":0,"docs":{},"w":{"df":0,"docs":{},"w":{".":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"/":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"215":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"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":{},"m":{"/":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"/":{"df":0,"docs":{},"w":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"152":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"255":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{".":{"a":{"df":1,"docs":{"209":{"tf":1.0}},"e":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"208":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"u":{"b":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"206":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":1,"docs":{"281":{"tf":1.4142135623730951}}}},"m":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"111":{"tf":1.0},"116":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"w":{"df":9,"docs":{"0":{"tf":1.0},"156":{"tf":1.0},"176":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":3,"docs":{"144":{"tf":1.4142135623730951},"145":{"tf":2.23606797749979},"146":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":13,"docs":{"128":{"tf":2.23606797749979},"129":{"tf":1.7320508075688772},"130":{"tf":2.0},"131":{"tf":1.7320508075688772},"166":{"tf":1.0},"236":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":1.4142135623730951},"50":{"tf":1.0},"97":{"tf":1.7320508075688772},"98":{"tf":1.4142135623730951},"99":{"tf":1.0}},"’":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":1,"docs":{"66":{"tf":1.0}}},"df":19,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":3.0},"266":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.0},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.4142135623730951},"35":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951}}}}},"/":{"df":0,"docs":{},"o":{"df":1,"docs":{"245":{"tf":1.0}}}},"2":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{".":{"0":{"df":1,"docs":{"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":1,"docs":{"73":{"tf":1.0}}},"c":{"df":1,"docs":{"238":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"l":{"df":8,"docs":{"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"166":{"tf":1.0},"168":{"tf":1.0},"196":{"tf":1.0},"201":{"tf":1.0},"86":{"tf":1.4142135623730951}}}}},"d":{"=":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"w":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":8,"docs":{"107":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"20":{"tf":1.0},"221":{"tf":1.4142135623730951},"267":{"tf":1.0},"36":{"tf":1.0},"69":{"tf":1.4142135623730951}},"e":{"a":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}},"l":{"df":2,"docs":{"138":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"153":{"tf":1.0},"70":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"150":{"tf":1.0}},"i":{"df":12,"docs":{"114":{"tf":1.0},"118":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"237":{"tf":1.0},"68":{"tf":1.0},"88":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"10":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"8":{"0":{"2":{".":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"f":{"=":{"$":{"df":0,"docs":{},"{":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"$":{"df":0,"docs":{},"{":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{".":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"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":{}}},".":{"/":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"/":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"/":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"107":{"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":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":5,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"66":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"201":{"tf":1.0},"44":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":8,"docs":{"13":{"tf":1.0},"21":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}}}}}},"m":{"a":{"df":0,"docs":{},"g":{"df":41,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"123":{"tf":1.4142135623730951},"126":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":2.8284271247461903},"144":{"tf":1.4142135623730951},"145":{"tf":2.449489742783178},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":3.0},"178":{"tf":2.6457513110645907},"19":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":2.23606797749979},"195":{"tf":2.6457513110645907},"196":{"tf":1.4142135623730951},"199":{"tf":1.7320508075688772},"200":{"tf":1.0},"21":{"tf":1.0},"279":{"tf":2.6457513110645907},"281":{"tf":2.23606797749979},"282":{"tf":1.4142135623730951},"57":{"tf":1.0},"61":{"tf":2.449489742783178},"62":{"tf":1.7320508075688772},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":2.8284271247461903},"66":{"tf":2.23606797749979},"67":{"tf":3.0},"76":{"tf":1.7320508075688772},"79":{"tf":1.0},"8":{"tf":2.0},"81":{"tf":1.4142135623730951},"89":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":2.0}},"e":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{},"—":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"2":{"df":1,"docs":{"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"g":{"=":{"$":{"1":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"126":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"279":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"196":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":3,"docs":{"137":{"tf":1.7320508075688772},"143":{"tf":1.0},"262":{"tf":1.0}}}}},"p":{"a":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"159":{"tf":1.0},"160":{"tf":1.0},"25":{"tf":1.7320508075688772},"4":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"265":{"tf":1.0}}}}},"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":74,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":1.4142135623730951},"106":{"tf":1.0},"11":{"tf":1.7320508075688772},"110":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"145":{"tf":1.0},"16":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.7320508075688772},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"253":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.4142135623730951},"39":{"tf":1.0},"40":{"tf":1.0},"48":{"tf":1.4142135623730951},"5":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"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.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"144":{"tf":1.0},"19":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":8,"docs":{"136":{"tf":1.0},"155":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"263":{"tf":1.0},"40":{"tf":1.0},"54":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"x":{"8":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"q":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"1":{"df":0,"docs":{},"v":{"8":{"_":{"3":{"df":0,"docs":{},"v":{"3":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"a":{"_":{"df":0,"docs":{},"p":{"a":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"b":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"1":{"2":{"5":{"df":0,"docs":{},"m":{"_":{"2":{"5":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}},"c":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"d":{"0":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"1":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"1":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"2":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"2":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"3":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"0":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"d":{"3":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"a":{"df":0,"docs":{},"i":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"x":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"_":{"0":{"7":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"0":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"_":{"c":{"df":0,"docs":{},"s":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":9,"docs":{"265":{"tf":2.23606797749979},"272":{"tf":1.0},"274":{"tf":1.4142135623730951},"275":{"tf":1.7320508075688772},"276":{"tf":1.7320508075688772},"277":{"tf":2.0},"66":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}}},"x":{"df":1,"docs":{"272":{"tf":1.0}}}}},"_":{"df":0,"docs":{},"s":{"c":{"_":{"c":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"x":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"r":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"_":{"0":{"df":2,"docs":{"267":{"tf":1.0},"272":{"tf":2.6457513110645907}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"_":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"d":{"df":24,"docs":{"107":{"tf":1.0},"111":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.4142135623730951},"159":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":1.4142135623730951},"24":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"273":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"282":{"tf":1.0},"50":{"tf":1.7320508075688772},"85":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"19":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":4,"docs":{"157":{"tf":1.0},"191":{"tf":1.0},"3":{"tf":1.0},"54":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}}},"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"139":{"tf":1.0},"141":{"tf":1.0},"203":{"tf":1.0}}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":7,"docs":{"191":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}},"df":0,"docs":{}}}},"x":{"df":1,"docs":{"116":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"u":{"df":3,"docs":{"112":{"tf":1.7320508075688772},"2":{"tf":1.0},"273":{"tf":1.0}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"o":{"/":{"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":1,"docs":{"130":{"tf":1.0}}}}}}}}}},"df":2,"docs":{"108":{"tf":1.0},"94":{"tf":1.0}},"r":{"df":0,"docs":{},"m":{"df":33,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"182":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"214":{"tf":1.0},"279":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":12,"docs":{"0":{"tf":1.0},"134":{"tf":1.0},"135":{"tf":1.0},"136":{"tf":1.0},"153":{"tf":2.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"263":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"i":{"df":11,"docs":{"116":{"tf":1.0},"154":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.4142135623730951},"202":{"tf":2.23606797749979},"203":{"tf":2.23606797749979},"24":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"279":{"tf":2.23606797749979},"281":{"tf":1.4142135623730951}}},"r":{"d":{"df":1,"docs":{"46":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":1,"docs":{"209":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"160":{"tf":1.7320508075688772},"91":{"tf":2.23606797749979}},"–":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"222":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"34":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"66":{"tf":1.0},"67":{"tf":1.0}}}}},"i":{"d":{"df":6,"docs":{"108":{"tf":1.0},"111":{"tf":1.0},"194":{"tf":1.7320508075688772},"70":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0}}},"df":0,"docs":{}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"168":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":28,"docs":{"116":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"178":{"tf":1.4142135623730951},"194":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.7320508075688772},"264":{"tf":1.0},"278":{"tf":2.23606797749979},"279":{"tf":2.449489742783178},"280":{"tf":3.1622776601683795},"281":{"tf":3.872983346207417},"282":{"tf":3.872983346207417},"283":{"tf":1.7320508075688772},"46":{"tf":1.0},"47":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"73":{"tf":1.0},"75":{"tf":1.7320508075688772},"76":{"tf":3.0},"77":{"tf":2.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"76":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"c":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"d":{"df":4,"docs":{"13":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"203":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"126":{"tf":1.0},"170":{"tf":1.7320508075688772},"178":{"tf":1.7320508075688772},"224":{"tf":1.0},"283":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":17,"docs":{"10":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"123":{"tf":1.0},"132":{"tf":2.0},"133":{"tf":1.0},"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"166":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"207":{"tf":1.7320508075688772},"238":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.7320508075688772},"31":{"tf":1.0},"6":{"tf":1.0}}}},"l":{"df":2,"docs":{"7":{"tf":1.0},"83":{"tf":1.4142135623730951}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"202":{"tf":1.0},"209":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"219":{"tf":1.0},"27":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":2.449489742783178},"282":{"tf":1.4142135623730951},"283":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"233":{"tf":1.0},"234":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":3,"docs":{"10":{"tf":1.7320508075688772},"25":{"tf":1.0},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"13":{"tf":1.0}}}}},"f":{"a":{"c":{"df":10,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"156":{"tf":1.0},"188":{"tf":1.0},"220":{"tf":1.0},"243":{"tf":1.7320508075688772},"244":{"tf":1.0},"35":{"tf":2.0},"57":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"191":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"n":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0}},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"195":{"tf":2.8284271247461903},"199":{"tf":1.0},"223":{"tf":1.4142135623730951},"283":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.0},"52":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":10,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"229":{"tf":1.0},"265":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.449489742783178},"40":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":3,"docs":{"121":{"tf":1.0},"138":{"tf":1.0},"281":{"tf":1.0}},"t":{"df":1,"docs":{"121":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"df":2,"docs":{"221":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"149":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":3,"docs":{"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"202":{"tf":1.0}}}}}}},"o":{"c":{"df":1,"docs":{"131":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":2,"docs":{"120":{"tf":1.0},"82":{"tf":1.0}}}}}}},"o":{"df":1,"docs":{"97":{"tf":1.0}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":7,"docs":{"107":{"tf":1.7320508075688772},"112":{"tf":2.0},"113":{"tf":1.4142135623730951},"222":{"tf":1.4142135623730951},"267":{"tf":3.7416573867739413},"273":{"tf":2.23606797749979},"97":{"tf":1.0}}}},"u":{"df":0,"docs":{},"x":{"c":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"p":{".":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"#":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"214":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":7,"docs":{"10":{"tf":1.0},"199":{"tf":1.0},"214":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.4142135623730951},"35":{"tf":1.0},"94":{"tf":1.0}},"g":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":2.23606797749979}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"272":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"131":{"tf":1.0}}}}}},"s":{"a":{"df":3,"docs":{"224":{"tf":1.4142135623730951},"80":{"tf":1.7320508075688772},"83":{"tf":1.0}}},"df":0,"docs":{},"o":{"df":3,"docs":{"194":{"tf":1.0},"195":{"tf":1.4142135623730951},"280":{"tf":1.0}},"l":{"df":13,"docs":{"1":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"139":{"tf":1.0},"15":{"tf":1.0},"191":{"tf":1.7320508075688772},"34":{"tf":1.0},"36":{"tf":1.7320508075688772},"39":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":2.0}}}},"s":{"df":0,"docs":{},"u":{"df":19,"docs":{"103":{"tf":1.0},"134":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.23606797749979},"159":{"tf":1.4142135623730951},"160":{"tf":1.4142135623730951},"168":{"tf":1.7320508075688772},"176":{"tf":2.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"204":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"56":{"tf":1.0},"68":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0},"94":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"207":{"tf":1.0},"29":{"tf":1.0}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"f":{"df":2,"docs":{"111":{"tf":1.0},"112":{"tf":1.0}}}}}}}},"j":{"$":{"(":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":1,"docs":{"43":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"8":{"df":0,"docs":{},"i":{"d":{"9":{"2":{"df":0,"docs":{},"q":{"df":0,"docs":{},"s":{"d":{"5":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"j":{"df":0,"docs":{},"n":{"df":0,"docs":{},"z":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"6":{"df":0,"docs":{},"v":{"5":{"df":0,"docs":{},"l":{"3":{"8":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"6":{"df":0,"docs":{},"i":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"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":{},"t":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"166":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"x":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"1":{".":{"5":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":46,"docs":{"10":{"tf":1.0},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":2.0},"127":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.0},"99":{"tf":1.7320508075688772}}}}}}},"k":{"df":1,"docs":{"70":{"tf":1.0}}},"o":{"b":{"df":2,"docs":{"160":{"tf":1.0},"70":{"tf":1.4142135623730951}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"194":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":2,"docs":{"139":{"tf":1.0},"211":{"tf":1.0}}}}}}},"ː":{"df":0,"docs":{},"ɛ":{"df":0,"docs":{},"f":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"k":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":2.449489742783178}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":6,"docs":{"0":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.0},"237":{"tf":1.0},"94":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"r":{"c":{"/":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"c":{"/":{"df":0,"docs":{},"t":{"2":{"3":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"109":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":33,"docs":{"101":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.7320508075688772},"116":{"tf":1.0},"126":{"tf":1.7320508075688772},"130":{"tf":1.0},"166":{"tf":1.0},"20":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.4142135623730951},"26":{"tf":1.4142135623730951},"265":{"tf":1.0},"266":{"tf":2.0},"274":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"29":{"tf":1.7320508075688772},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"42":{"tf":2.6457513110645907},"43":{"tf":4.358898943540674},"44":{"tf":2.8284271247461903},"46":{"tf":1.0},"50":{"tf":1.4142135623730951},"57":{"tf":1.7320508075688772},"67":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}}}},"x":{"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"280":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":35,"docs":{"0":{"tf":1.0},"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.6457513110645907},"154":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"195":{"tf":2.0},"24":{"tf":1.0},"254":{"tf":1.0},"256":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"34":{"tf":1.0},"45":{"tf":1.0},"47":{"tf":2.6457513110645907},"48":{"tf":1.7320508075688772},"49":{"tf":1.4142135623730951},"59":{"tf":1.0},"68":{"tf":1.0},"69":{"tf":3.872983346207417},"70":{"tf":2.449489742783178},"71":{"tf":1.4142135623730951},"74":{"tf":3.0}}}},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"146":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}},"t":{"df":11,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"165":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"178":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":2.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"150":{"tf":1.0},"282":{"tf":1.0},"45":{"tf":1.0}},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"70":{"tf":1.0}}}}}}},"df":7,"docs":{"134":{"tf":1.0},"150":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"6":{"tf":1.4142135623730951}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"k":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.7320508075688772}}}}},"v":{"df":0,"docs":{},"m":{"df":10,"docs":{"199":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.4142135623730951},"267":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":2.0}}}}},"l":{"a":{"b":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"195":{"tf":1.0}}}}}}}},"df":1,"docs":{"227":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"65":{"tf":2.449489742783178}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"w":{"c":{"df":3,"docs":{"59":{"tf":1.0},"87":{"tf":2.8284271247461903},"88":{"tf":1.7320508075688772}}},"df":1,"docs":{"227":{"tf":2.0}}}},"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"145":{"tf":1.0},"146":{"tf":1.0}}}},"df":0,"docs":{},"n":{"df":1,"docs":{"203":{"tf":1.0}},"g":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"194":{"tf":1.0},"56":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"z":{"a":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":10,"docs":{"0":{"tf":1.0},"168":{"tf":1.4142135623730951},"191":{"tf":2.23606797749979},"195":{"tf":1.0},"2":{"tf":1.0},"65":{"tf":1.4142135623730951},"7":{"tf":1.7320508075688772},"8":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":2.0}}}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"116":{"tf":1.0},"149":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"24":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"160":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"158":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":5,"docs":{"132":{"tf":1.0},"194":{"tf":1.0},"65":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}},"n":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"109":{"tf":1.0},"128":{"tf":1.0},"168":{"tf":1.0},"174":{"tf":1.0},"176":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":2.23606797749979},"203":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":11,"docs":{"168":{"tf":1.0},"175":{"tf":1.4142135623730951},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.7320508075688772},"196":{"tf":1.7320508075688772},"197":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"121":{"tf":1.0},"50":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"157":{"tf":1.0},"241":{"tf":1.0},"50":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"o":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"65":{"tf":1.0}}}}}}},"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":3,"docs":{"125":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}},"e":{"a":{"d":{"df":3,"docs":{"156":{"tf":1.0},"157":{"tf":1.0},"209":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}},"v":{"df":2,"docs":{"112":{"tf":1.4142135623730951},"144":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":4,"docs":{"114":{"tf":1.0},"272":{"tf":1.4142135623730951},"282":{"tf":1.0},"34":{"tf":1.0}}}},"g":{"a":{"c":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"_":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"t":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":23,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.0},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":1.7320508075688772},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":2.23606797749979}}}}}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"264":{"tf":1.0}}}}}},"t":{"'":{"df":1,"docs":{"118":{"tf":1.0}}},"df":2,"docs":{"273":{"tf":1.4142135623730951},"84":{"tf":1.0}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"202":{"tf":2.0},"203":{"tf":1.4142135623730951}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":19,"docs":{"109":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":4.358898943540674},"139":{"tf":2.0},"157":{"tf":2.0},"158":{"tf":1.0},"160":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"270":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.4142135623730951},"69":{"tf":1.0},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.0}}},"r":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"3":{"tf":1.4142135623730951},"5":{"tf":1.0}}}},"df":0,"docs":{}}}}},"i":{"b":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"k":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"c":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"6":{"4":{"df":1,"docs":{"199":{"tf":2.23606797749979}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{".":{"2":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":1,"docs":{"199":{"tf":1.0}}}}},"df":1,"docs":{"70":{"tf":1.4142135623730951}},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"257":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":1.7320508075688772},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.0}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":3,"docs":{"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"257":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":6,"docs":{"149":{"tf":1.0},"150":{"tf":1.4142135623730951},"217":{"tf":1.0},"259":{"tf":1.0},"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"d":{"df":1,"docs":{"168":{"tf":1.4142135623730951}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"207":{"tf":1.0},"254":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":13,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.0},"156":{"tf":1.0},"168":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"279":{"tf":1.0},"29":{"tf":1.4142135623730951}}}}},"n":{"df":0,"docs":{},"e":{"df":16,"docs":{"103":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.4142135623730951},"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":2.0},"168":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"271":{"tf":1.0},"43":{"tf":1.0},"87":{"tf":1.0}}},"k":{"df":2,"docs":{"199":{"tf":1.4142135623730951},"265":{"tf":1.0}}},"u":{"df":0,"docs":{},"x":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":1,"docs":{"66":{"tf":1.0}}}}},"df":0,"docs":{}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}}}},"df":26,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"130":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.7320508075688772},"225":{"tf":1.0},"230":{"tf":1.0},"274":{"tf":1.0},"279":{"tf":1.4142135623730951},"280":{"tf":1.7320508075688772},"281":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":2.0},"53":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.4142135623730951},"90":{"tf":2.0},"93":{"tf":1.0},"97":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"df":12,"docs":{"103":{"tf":2.0},"113":{"tf":1.4142135623730951},"131":{"tf":1.0},"148":{"tf":1.0},"156":{"tf":1.0},"20":{"tf":1.0},"263":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"76":{"tf":1.4142135623730951},"85":{"tf":1.4142135623730951},"86":{"tf":1.0}}}}},"n":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}},"o":{"a":{"d":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"269":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":5,"docs":{"200":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"46":{"tf":1.0}}},"df":0,"docs":{}},"c":{"a":{"df":0,"docs":{},"l":{"df":8,"docs":{"160":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0},"69":{"tf":2.0},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951}},"’":{"df":1,"docs":{"74":{"tf":1.0}}}},"t":{"df":3,"docs":{"111":{"tf":1.4142135623730951},"130":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"k":{"df":2,"docs":{"160":{"tf":2.0},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":12,"docs":{"113":{"tf":1.0},"156":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"211":{"tf":1.0},"27":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"94":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"4":{"df":1,"docs":{"130":{"tf":1.0}}},"7":{"df":1,"docs":{"277":{"tf":1.0}}},"8":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"114":{"tf":1.0},"202":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"176":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"k":{"df":4,"docs":{"188":{"tf":1.0},"204":{"tf":1.0},"219":{"tf":1.0},"94":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"281":{"tf":1.0}}}},"t":{"df":3,"docs":{"138":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":1,"docs":{"54":{"tf":1.0}}}},"w":{"df":3,"docs":{"0":{"tf":1.0},"157":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"50":{"tf":1.0}}}}}}},"p":{"c":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"df":0,"docs":{},"x":{"df":1,"docs":{"125":{"tf":1.0}}}}}}}}}}},"s":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"df":1,"docs":{"65":{"tf":1.4142135623730951}}}}},"df":3,"docs":{"113":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"130":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"1":{"df":1,"docs":{"267":{"tf":2.23606797749979}}},"4":{"df":1,"docs":{"267":{"tf":3.3166247903554}}},"df":0,"docs":{}}}}},"m":{"df":0,"docs":{},"u":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"2":{"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.0}}},"4":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"h":{"df":1,"docs":{"203":{"tf":1.0}}}},"z":{"b":{"df":0,"docs":{},"t":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"m":{".":{"2":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":2.449489742783178},"113":{"tf":1.0}}},"df":0,"docs":{}},"2":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}},"a":{"c":{"@":{"1":{"c":{"4":{"df":1,"docs":{"272":{"tf":1.0}}},"6":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"85":{"tf":2.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"'":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":2,"docs":{"273":{"tf":1.0},"94":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":38,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.4142135623730951},"13":{"tf":1.4142135623730951},"130":{"tf":1.0},"148":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.0},"235":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.4142135623730951},"259":{"tf":1.0},"271":{"tf":1.4142135623730951},"32":{"tf":1.4142135623730951},"39":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.6457513110645907},"71":{"tf":1.4142135623730951},"72":{"tf":1.0},"73":{"tf":1.7320508075688772},"74":{"tf":2.0},"8":{"tf":1.4142135623730951},"81":{"tf":1.0},"83":{"tf":1.0},"9":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.7320508075688772},"260":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"105":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"121":{"tf":1.0},"161":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"@":{"5":{"d":{"1":{"d":{"0":{"0":{"0":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":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":{"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0}}}}},"df":0,"docs":{}},"n":{"df":17,"docs":{"0":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"215":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.0},"40":{"tf":1.0},"43":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"39":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":8,"docs":{"149":{"tf":1.0},"160":{"tf":1.0},"211":{"tf":1.0},"280":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"82":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"|":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"a":{"c":{"df":0,"docs":{},"k":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"a":{"c":{"df":1,"docs":{"43":{"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":{},"e":{"df":0,"docs":{},"n":{"df":3,"docs":{"0":{"tf":1.0},"271":{"tf":1.0},"56":{"tf":1.0}}}}}}},"k":{"df":0,"docs":{},"e":{"df":26,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"133":{"tf":1.4142135623730951},"138":{"tf":1.0},"148":{"tf":1.0},"157":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"36":{"tf":1.7320508075688772},"40":{"tf":1.0},"43":{"tf":1.4142135623730951},"44":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"l":{"df":0,"docs":{},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"a":{"df":0,"docs":{},"g":{"df":21,"docs":{"120":{"tf":2.23606797749979},"121":{"tf":1.0},"153":{"tf":1.7320508075688772},"155":{"tf":1.0},"166":{"tf":1.0},"188":{"tf":1.0},"202":{"tf":1.0},"212":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"230":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.0},"251":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0},"47":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.7320508075688772},"99":{"tf":1.0}}}},"d":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"i":{"df":8,"docs":{"149":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0},"97":{"tf":1.0}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"u":{"a":{"df":0,"docs":{},"l":{"df":12,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":2.449489742783178},"212":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"231":{"tf":1.0},"282":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"p":{"df":9,"docs":{"105":{"tf":2.449489742783178},"116":{"tf":1.4142135623730951},"128":{"tf":1.0},"153":{"tf":1.0},"267":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0},"91":{"tf":1.0},"97":{"tf":1.0}}},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"267":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":3,"docs":{"273":{"tf":1.4142135623730951},"71":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":9,"docs":{"134":{"tf":1.0},"148":{"tf":2.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.7320508075688772},"155":{"tf":1.0},"209":{"tf":1.0},"259":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"188":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"114":{"tf":1.0}}}}}},"x":{"7":{"3":{"2":{"2":{"df":1,"docs":{"272":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":3,"docs":{"272":{"tf":1.0},"273":{"tf":1.0},"70":{"tf":1.4142135623730951}},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}}}}},"b":{"1":{"df":2,"docs":{"105":{"tf":1.0},"109":{"tf":1.0}}},"df":1,"docs":{"85":{"tf":1.0}},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"c":{"df":0,"docs":{},"u":{"df":1,"docs":{"105":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":8,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"156":{"tf":1.0},"20":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"n":{"df":7,"docs":{"134":{"tf":1.4142135623730951},"138":{"tf":1.0},"144":{"tf":1.0},"191":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0},"94":{"tf":1.0}},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":10,"docs":{"135":{"tf":1.0},"140":{"tf":1.7320508075688772},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.4142135623730951},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"3":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":10,"docs":{"144":{"tf":1.0},"278":{"tf":1.0},"30":{"tf":1.0},"4":{"tf":1.4142135623730951},"43":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":0,"docs":{},"i":{"a":{"=":{"c":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"x":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"q":{"b":{"3":{"df":0,"docs":{},"s":{"b":{"1":{"df":0,"docs":{},"l":{"4":{"df":0,"docs":{},"k":{"b":{"df":0,"docs":{},"x":{"7":{"df":0,"docs":{},"s":{"0":{"df":0,"docs":{},"i":{"df":0,"docs":{},"j":{"a":{"df":0,"docs":{},"z":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"5":{"df":0,"docs":{},"r":{"0":{"c":{"0":{"df":0,"docs":{},"x":{"df":0,"docs":{},"h":{"df":0,"docs":{},"x":{"5":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":8,"docs":{"279":{"tf":1.4142135623730951},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"66":{"tf":1.7320508075688772},"9":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{".":{"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}},"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":5,"docs":{"265":{"tf":1.4142135623730951},"274":{"tf":1.4142135623730951},"275":{"tf":2.0},"276":{"tf":2.0},"277":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"df":6,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"265":{"tf":1.4142135623730951},"267":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":2.0}}},"m":{"=":{"8":{"1":{"9":{"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"130":{"tf":1.0}},"m":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"116":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":13,"docs":{"10":{"tf":1.0},"101":{"tf":1.0},"116":{"tf":2.23606797749979},"131":{"tf":1.4142135623730951},"215":{"tf":1.7320508075688772},"222":{"tf":1.0},"228":{"tf":1.0},"25":{"tf":1.0},"281":{"tf":1.0},"40":{"tf":1.0},"52":{"tf":1.0},"85":{"tf":1.4142135623730951},"97":{"tf":2.0}}}}},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"131":{"tf":1.0},"145":{"tf":1.0},"283":{"tf":1.0}}}}}},"u":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}},"df":2,"docs":{"49":{"tf":1.0},"62":{"tf":1.0}}}},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"133":{"tf":1.0},"143":{"tf":1.7320508075688772}},"e":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"115":{"tf":1.0},"133":{"tf":1.0},"200":{"tf":1.0},"229":{"tf":1.0},"54":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"a":{"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"137":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"44":{"tf":1.0}}}},"df":1,"docs":{"20":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"d":{"df":3,"docs":{"115":{"tf":1.0},"193":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"153":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"24":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"h":{"0":{"1":{"df":2,"docs":{"20":{"tf":1.0},"23":{"tf":1.4142135623730951}}},"2":{"df":2,"docs":{"20":{"tf":1.0},"24":{"tf":1.4142135623730951}}},"3":{"df":2,"docs":{"20":{"tf":1.0},"25":{"tf":1.4142135623730951}}},"4":{"df":2,"docs":{"20":{"tf":1.0},"26":{"tf":1.4142135623730951}}},"5":{"df":2,"docs":{"20":{"tf":1.0},"27":{"tf":1.4142135623730951}}},"6":{"df":2,"docs":{"20":{"tf":1.0},"28":{"tf":1.4142135623730951}}},"7":{"df":2,"docs":{"20":{"tf":1.0},"29":{"tf":1.4142135623730951}}},"8":{"df":3,"docs":{"20":{"tf":1.0},"28":{"tf":1.0},"30":{"tf":1.4142135623730951}}},"9":{"df":2,"docs":{"20":{"tf":1.0},"31":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"43":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":7,"docs":{"156":{"tf":1.0},"170":{"tf":1.0},"178":{"tf":1.0},"238":{"tf":1.0},"61":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"81":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.0},"65":{"tf":1.0}},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"155":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{":":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"g":{",":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},".":{"b":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{},"h":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":2,"docs":{"122":{"tf":1.0},"23":{"tf":1.7320508075688772}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"v":{"c":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":2,"docs":{"129":{"tf":1.0},"130":{"tf":1.0}}}}},"df":0,"docs":{}}},"@":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}}}}},"df":6,"docs":{"127":{"tf":1.0},"128":{"tf":2.0},"130":{"tf":2.449489742783178},"131":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"’":{"df":1,"docs":{"129":{"tf":1.0}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951}}}}}}}}},"d":{"d":{"df":0,"docs":{},"l":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"138":{"tf":1.0}}}}}}}},"n":{"df":2,"docs":{"272":{"tf":1.0},"273":{"tf":1.0}},"i":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"126":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"21":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":21,"docs":{"1":{"tf":1.0},"10":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":1.7320508075688772},"16":{"tf":1.0},"17":{"tf":1.7320508075688772},"18":{"tf":1.0},"19":{"tf":2.449489742783178},"20":{"tf":2.0},"21":{"tf":2.23606797749979},"22":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.4142135623730951},"25":{"tf":1.0},"26":{"tf":1.4142135623730951},"27":{"tf":1.0},"28":{"tf":1.0},"29":{"tf":2.0},"30":{"tf":1.0},"31":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"m":{"df":2,"docs":{"147":{"tf":1.0},"27":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"152":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":2,"docs":{"199":{"tf":1.0},"271":{"tf":1.0}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"k":{"df":1,"docs":{"88":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"k":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":2,"docs":{"194":{"tf":1.0},"199":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"m":{"c":{"df":2,"docs":{"216":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772}}},"df":1,"docs":{"111":{"tf":1.4142135623730951}},"u":{"df":2,"docs":{"228":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951}}}},"o":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"219":{"tf":1.4142135623730951}}}}},"d":{"df":0,"docs":{},"e":{"df":12,"docs":{"23":{"tf":1.7320508075688772},"27":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.7320508075688772},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":2.0},"72":{"tf":2.0}},"l":{"df":5,"docs":{"138":{"tf":1.0},"224":{"tf":1.0},"243":{"tf":1.0},"248":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"115":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":7,"docs":{"107":{"tf":1.0},"112":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"273":{"tf":1.0},"28":{"tf":1.0},"44":{"tf":1.0}},"i":{"df":5,"docs":{"107":{"tf":1.0},"112":{"tf":1.4142135623730951},"115":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":15,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"13":{"tf":1.0},"144":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"19":{"tf":1.0},"2":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":2.0},"3":{"tf":1.0},"34":{"tf":1.0},"56":{"tf":1.0}}}},"df":23,"docs":{"0":{"tf":1.0},"111":{"tf":1.0},"121":{"tf":2.0},"155":{"tf":1.7320508075688772},"190":{"tf":1.0},"23":{"tf":1.4142135623730951},"24":{"tf":1.0},"254":{"tf":1.0},"279":{"tf":1.4142135623730951},"28":{"tf":1.0},"3":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"44":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.0},"76":{"tf":1.7320508075688772},"77":{"tf":1.7320508075688772},"78":{"tf":1.7320508075688772},"8":{"tf":1.0},"87":{"tf":1.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"95":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"27":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"d":{"_":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"43":{"tf":1.7320508075688772}},"e":{"df":0,"docs":{},"|":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"43":{"tf":1.0}}}}}}}}}}}}}},"df":0,"docs":{}},"df":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":{"44":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"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":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"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":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":4,"docs":{"108":{"tf":1.0},"221":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"1":{"tf":1.7320508075688772},"13":{"tf":1.0},"34":{"tf":1.0}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":39,"docs":{"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"104":{"tf":1.0},"111":{"tf":1.4142135623730951},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.4142135623730951},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.4142135623730951},"155":{"tf":1.0},"157":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"203":{"tf":1.0},"21":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"271":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.7320508075688772},"5":{"tf":1.0},"54":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"94":{"tf":1.0},"96":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"194":{"tf":1.4142135623730951},"20":{"tf":1.0}}}},"s":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":5,"docs":{"100":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"215":{"tf":1.0}}}}},"p":{"df":0,"docs":{},"f":{"df":1,"docs":{"67":{"tf":1.0}}}},"r":{"df":1,"docs":{"202":{"tf":1.0}}},"s":{"df":1,"docs":{"191":{"tf":1.0}},"i":{"df":3,"docs":{"115":{"tf":2.6457513110645907},"116":{"tf":1.4142135623730951},"229":{"tf":1.4142135623730951}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"108":{"tf":1.0}}}}}},"u":{"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"138":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0}}}},"df":3,"docs":{"267":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.7320508075688772}},"l":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"72":{"tf":1.7320508075688772}},"m":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":3,"docs":{"113":{"tf":1.0},"19":{"tf":1.0},"278":{"tf":1.0}}}}}}},"x":{"df":1,"docs":{"105":{"tf":1.0}}}},"v":{"df":1,"docs":{"199":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{",":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"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":{},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{",":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"df":0,"docs":{},"e":{",":{"df":0,"docs":{},"u":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"65":{"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":17,"docs":{"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"15":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"206":{"tf":1.0},"267":{"tf":2.0},"268":{"tf":1.0},"272":{"tf":3.605551275463989},"273":{"tf":1.7320508075688772},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.4142135623730951},"79":{"tf":1.0},"85":{"tf":2.6457513110645907},"90":{"tf":1.4142135623730951},"94":{"tf":2.449489742783178}}}},"n":{"df":0,"docs":{},"o":{"df":2,"docs":{"69":{"tf":1.0},"70":{"tf":2.0}}}},"s":{"a":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":6,"docs":{"147":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"35":{"tf":1.4142135623730951},"8":{"tf":1.0},"88":{"tf":1.0}}}},"o":{"df":1,"docs":{"202":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":2,"docs":{"201":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}}},"df":2,"docs":{"156":{"tf":1.0},"70":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":6,"docs":{"100":{"tf":1.0},"156":{"tf":1.0},"238":{"tf":1.0},"4":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":1.0}}}}},"df":1,"docs":{"40":{"tf":1.0}}}}}},"df":0,"docs":{},"e":{"d":{"df":36,"docs":{"100":{"tf":1.0},"101":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"144":{"tf":1.0},"151":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"160":{"tf":1.4142135623730951},"24":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.4142135623730951},"271":{"tf":1.7320508075688772},"272":{"tf":2.449489742783178},"273":{"tf":1.7320508075688772},"274":{"tf":1.0},"277":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.4142135623730951},"51":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"73":{"tf":1.0},"80":{"tf":1.0},"85":{"tf":1.0},"92":{"tf":2.0}}},"df":0,"docs":{}},"t":{"df":1,"docs":{"126":{"tf":1.4142135623730951}},"v":{"df":0,"docs":{},"m":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"33":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":9,"docs":{"10":{"tf":1.7320508075688772},"15":{"tf":1.4142135623730951},"166":{"tf":1.0},"168":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":2.8284271247461903},"9":{"tf":1.0},"94":{"tf":1.0}},"—":{"df":0,"docs":{},"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":2,"docs":{"16":{"tf":1.0},"32":{"tf":1.4142135623730951}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":25,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"14":{"tf":1.0},"156":{"tf":1.0},"166":{"tf":1.0},"191":{"tf":1.0},"20":{"tf":1.4142135623730951},"214":{"tf":1.7320508075688772},"221":{"tf":1.0},"25":{"tf":3.605551275463989},"257":{"tf":1.0},"267":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":2.0},"35":{"tf":3.1622776601683795},"36":{"tf":1.4142135623730951},"51":{"tf":1.4142135623730951},"52":{"tf":1.4142135623730951},"59":{"tf":1.0},"73":{"tf":1.4142135623730951},"85":{"tf":1.0},"94":{"tf":1.0}},"p":{"c":{"df":0,"docs":{},"i":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"93":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"s":{".":{"\"":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"\"":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"93":{"tf":1.0}}}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"128":{"tf":1.0}}}}}}}}}}}},"w":{"df":17,"docs":{"115":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"182":{"tf":1.4142135623730951},"188":{"tf":1.4142135623730951},"19":{"tf":1.0},"195":{"tf":1.0},"201":{"tf":1.4142135623730951},"243":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.0},"65":{"tf":1.0},"90":{"tf":1.0},"94":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":10,"docs":{"109":{"tf":1.0},"12":{"tf":2.0},"132":{"tf":1.0},"134":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"196":{"tf":1.0},"273":{"tf":1.0},"62":{"tf":1.0},"7":{"tf":1.0}}}}},"i":{"c":{"df":2,"docs":{"126":{"tf":1.0},"35":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}}}}}},"x":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"70":{"tf":2.449489742783178}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"96":{"tf":1.0}}}}},"df":0,"docs":{}},"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"199":{"tf":1.7320508075688772},"20":{"tf":1.0},"28":{"tf":1.4142135623730951}},"e":{"/":{"2":{"df":0,"docs":{},"j":{"d":{"df":0,"docs":{},"x":{"0":{"df":0,"docs":{},"r":{"0":{"df":0,"docs":{},"y":{"df":0,"docs":{},"i":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"k":{"3":{"8":{"df":0,"docs":{},"r":{"a":{"0":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"w":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"5":{"a":{"df":0,"docs":{},"k":{"b":{"0":{"df":0,"docs":{},"k":{"1":{"df":0,"docs":{},"r":{"df":0,"docs":{},"j":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"9":{"6":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"1":{"df":0,"docs":{},"z":{"d":{"df":0,"docs":{},"k":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"8":{"7":{"1":{"df":0,"docs":{},"h":{"2":{"d":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"1":{"9":{"8":{"df":0,"docs":{},"f":{"df":0,"docs":{},"z":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"v":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"r":{"1":{"d":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{"df":0,"docs":{},"g":{"8":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"q":{"df":0,"docs":{},"q":{"df":0,"docs":{},"y":{"df":0,"docs":{},"k":{"df":0,"docs":{},"m":{"df":0,"docs":{},"w":{"9":{"c":{"7":{"df":0,"docs":{},"l":{"0":{"b":{"df":0,"docs":{},"g":{"df":0,"docs":{},"z":{"df":0,"docs":{},"z":{"b":{"5":{"df":0,"docs":{},"z":{"df":0,"docs":{},"n":{"df":0,"docs":{},"k":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"f":{"df":0,"docs":{},"j":{"df":0,"docs":{},"w":{"df":1,"docs":{"199":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}}},"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":{"5":{"c":{"df":0,"docs":{},"m":{"df":0,"docs":{},"y":{"b":{"df":0,"docs":{},"y":{"0":{"df":0,"docs":{},"p":{"4":{"df":0,"docs":{},"i":{"df":0,"docs":{},"k":{"df":0,"docs":{},"w":{"9":{"1":{"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"r":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"h":{"df":0,"docs":{},"k":{"df":0,"docs":{},"z":{"3":{"5":{"1":{"df":0,"docs":{},"k":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"7":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"z":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"5":{"9":{"d":{"df":0,"docs":{},"n":{"5":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"k":{"8":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"q":{"4":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"g":{"5":{"df":0,"docs":{},"k":{"df":0,"docs":{},"q":{"df":0,"docs":{},"p":{"7":{"a":{"d":{"df":0,"docs":{},"y":{"df":0,"docs":{},"v":{"3":{"df":0,"docs":{},"f":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"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":{"a":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"d":{"df":1,"docs":{"160":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"b":{"df":0,"docs":{},"l":{"d":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":39,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"144":{"tf":1.7320508075688772},"146":{"tf":1.4142135623730951},"151":{"tf":1.7320508075688772},"159":{"tf":1.0},"160":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.0},"23":{"tf":2.0},"230":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.449489742783178},"35":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.7320508075688772},"61":{"tf":1.7320508075688772},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"67":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.23606797749979},"71":{"tf":1.0},"72":{"tf":3.0},"73":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.7320508075688772},"91":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":1,"docs":{"151":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":36,"docs":{"121":{"tf":1.0},"130":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"182":{"tf":1.4142135623730951},"19":{"tf":2.0},"21":{"tf":1.0},"230":{"tf":1.4142135623730951},"24":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":3.0},"282":{"tf":1.4142135623730951},"43":{"tf":1.0},"44":{"tf":1.4142135623730951},"46":{"tf":1.0},"49":{"tf":1.0},"55":{"tf":1.4142135623730951},"56":{"tf":1.4142135623730951},"57":{"tf":1.0},"59":{"tf":2.0},"61":{"tf":1.0},"67":{"tf":1.4142135623730951},"68":{"tf":2.0},"69":{"tf":1.0},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"76":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"80":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"94":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}},"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"65":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{".":{"<":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{">":{".":{"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":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"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":{}}}}}}},"df":1,"docs":{"90":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"k":{"df":1,"docs":{"160":{"tf":1.0}}}},"k":{"df":0,"docs":{},"g":{"df":9,"docs":{"159":{"tf":1.0},"160":{"tf":2.23606797749979},"21":{"tf":1.0},"44":{"tf":1.0},"47":{"tf":1.0},"56":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"96":{"tf":1.0}},"s":{"_":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"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":0,"docs":{},"e":{"d":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"=":{"1":{"df":1,"docs":{"199":{"tf":1.0}}},"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":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"146":{"tf":1.7320508075688772}}}}}}}},"n":{"df":0,"docs":{},"k":{"df":1,"docs":{"93":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"e":{"df":11,"docs":{"107":{"tf":1.4142135623730951},"108":{"tf":2.0},"113":{"tf":1.7320508075688772},"114":{"tf":1.4142135623730951},"147":{"tf":1.0},"214":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.4142135623730951}},"f":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":6,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"271":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}},"n":{"df":5,"docs":{"139":{"tf":1.0},"195":{"tf":1.4142135623730951},"211":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0}},"e":{"df":2,"docs":{"114":{"tf":1.0},"281":{"tf":1.4142135623730951}}}},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"271":{"tf":1.0},"69":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"202":{"tf":1.0}}}}},"s":{"a":{"df":0,"docs":{},"v":{"df":2,"docs":{"103":{"tf":1.7320508075688772},"118":{"tf":1.0}}}},"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":55,"docs":{"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"130":{"tf":1.0},"161":{"tf":1.7320508075688772},"162":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"170":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"178":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"181":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"187":{"tf":1.0},"188":{"tf":1.0},"189":{"tf":1.0},"20":{"tf":1.0},"264":{"tf":1.7320508075688772},"265":{"tf":1.7320508075688772},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"39":{"tf":1.0},"8":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"77":{"tf":1.0},"91":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":1,"docs":{"133":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":2,"docs":{"280":{"tf":1.0},"282":{"tf":1.0}}}}},"w":{"a":{"d":{"a":{"df":0,"docs":{},"y":{"df":1,"docs":{"39":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":6,"docs":{"271":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.0}}}},"u":{"c":{"df":2,"docs":{"168":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}},"m":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"100":{"tf":1.0},"108":{"tf":1.0},"161":{"tf":1.0},"2":{"tf":1.0},"281":{"tf":1.0}}}}},"df":1,"docs":{"272":{"tf":1.0}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":52,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.4142135623730951},"110":{"tf":2.0},"111":{"tf":2.23606797749979},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":2.23606797749979},"121":{"tf":1.0},"122":{"tf":2.0},"123":{"tf":2.6457513110645907},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.4142135623730951},"165":{"tf":1.4142135623730951},"166":{"tf":1.4142135623730951},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.4142135623730951},"39":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":2.449489742783178},"7":{"tf":1.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}}},"df":0,"docs":{}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"e":{"0":{"df":0,"docs":{},"n":{"1":{"df":1,"docs":{"79":{"tf":1.0}}},"df":0,"docs":{}}},"df":2,"docs":{"111":{"tf":2.23606797749979},"281":{"tf":1.0}},"m":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}}},"x":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951}},"p":{"df":5,"docs":{"181":{"tf":1.0},"187":{"tf":1.0},"61":{"tf":1.4142135623730951},"66":{"tf":1.4142135623730951},"8":{"tf":1.0}}}}},"o":{"b":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":6,"docs":{"0":{"tf":1.0},"131":{"tf":1.4142135623730951},"19":{"tf":1.0},"203":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0}}}},"df":0,"docs":{}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"108":{"tf":1.0},"69":{"tf":1.4142135623730951},"76":{"tf":1.0}}}}},"df":0,"docs":{}}},"c":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"76":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}},"o":{"b":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}}}},"df":4,"docs":{"271":{"tf":1.0},"275":{"tf":1.4142135623730951},"276":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951}},"e":{"4":{"df":0,"docs":{},"t":{"df":1,"docs":{"8":{"tf":1.0}}}},"df":0,"docs":{},"m":{"df":2,"docs":{"231":{"tf":1.4142135623730951},"282":{"tf":1.0}}}},"f":{"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"<":{"df":0,"docs":{},"s":{"d":{"c":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"d":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"67":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"s":{"b":{"_":{"d":{"df":0,"docs":{},"r":{"df":4,"docs":{"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"c":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"k":{"0":{"df":0,"docs":{},"p":{"3":{"df":1,"docs":{"107":{"tf":1.0}}},"6":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"138":{"tf":2.23606797749979},"144":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":1.0}}}},"i":{"c":{"df":2,"docs":{"136":{"tf":1.0},"191":{"tf":1.0}},"i":{"df":2,"docs":{"105":{"tf":1.0},"198":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"283":{"tf":1.0}}}},"o":{"a":{"d":{"df":2,"docs":{"120":{"tf":1.0},"212":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.0}}}}}}},"h":{"df":1,"docs":{"203":{"tf":1.0}}},"k":{"a":{"df":0,"docs":{},"y":{"df":6,"docs":{"108":{"tf":1.0},"202":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0}}}},"df":2,"docs":{"202":{"tf":1.0},"43":{"tf":1.0}}},"l":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"116":{"tf":1.0}}}}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"202":{"tf":1.0},"70":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}},"n":{"b":{"df":0,"docs":{},"o":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"67":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"c":{"df":5,"docs":{"132":{"tf":1.0},"196":{"tf":1.0},"49":{"tf":1.0},"59":{"tf":1.0},"73":{"tf":1.0}}},"df":21,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"108":{"tf":1.0},"111":{"tf":2.6457513110645907},"112":{"tf":1.4142135623730951},"133":{"tf":1.0},"138":{"tf":1.0},"155":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"267":{"tf":1.4142135623730951},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.7320508075688772},"39":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"o":{"b":{"df":0,"docs":{},"e":{"\\":{"b":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"n":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"195":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"166":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"73":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}}}},"df":23,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.4142135623730951},"149":{"tf":2.23606797749979},"150":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.7320508075688772},"175":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.4142135623730951},"189":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":2.23606797749979},"201":{"tf":1.4142135623730951},"225":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"235":{"tf":1.0},"259":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"57":{"tf":1.0}},"p":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"253":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":3,"docs":{"154":{"tf":1.0},"199":{"tf":1.0},"255":{"tf":1.4142135623730951}}}}}},"r":{"df":12,"docs":{"155":{"tf":1.4142135623730951},"157":{"tf":1.0},"191":{"tf":1.0},"215":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"261":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"65":{"tf":1.0},"72":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"155":{"tf":1.0},"19":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":27,"docs":{"103":{"tf":1.4142135623730951},"105":{"tf":1.0},"118":{"tf":1.0},"123":{"tf":2.0},"128":{"tf":2.23606797749979},"129":{"tf":2.449489742783178},"130":{"tf":2.449489742783178},"131":{"tf":2.449489742783178},"146":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"201":{"tf":1.0},"266":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.0},"51":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.4142135623730951},"87":{"tf":1.0},"89":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"95":{"tf":1.0},"99":{"tf":1.0}}}}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":3,"docs":{"195":{"tf":1.0},"196":{"tf":1.0},"270":{"tf":1.0}}}},"i":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"84":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"n":{"df":4,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"202":{"tf":1.0},"3":{"tf":1.0}},"i":{"df":0,"docs":{},"z":{"df":1,"docs":{"2":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":10,"docs":{"119":{"tf":1.7320508075688772},"138":{"tf":1.0},"149":{"tf":2.0},"20":{"tf":1.0},"231":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":2.8284271247461903},"273":{"tf":1.7320508075688772},"282":{"tf":1.0},"56":{"tf":1.0}}}}},"n":{"df":48,"docs":{"10":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"104":{"tf":2.0},"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.7320508075688772},"11":{"tf":2.0},"110":{"tf":2.0},"111":{"tf":3.0},"112":{"tf":1.0},"113":{"tf":1.4142135623730951},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"120":{"tf":1.7320508075688772},"123":{"tf":1.7320508075688772},"127":{"tf":1.0},"165":{"tf":1.4142135623730951},"166":{"tf":1.0},"170":{"tf":1.4142135623730951},"173":{"tf":1.4142135623730951},"174":{"tf":1.4142135623730951},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"189":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.4142135623730951},"212":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.4142135623730951},"65":{"tf":3.1622776601683795},"7":{"tf":1.4142135623730951},"8":{"tf":1.0},"9":{"tf":1.7320508075688772},"90":{"tf":1.4142135623730951},"99":{"tf":1.7320508075688772}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"7":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"s":{"df":13,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"21":{"tf":1.0},"232":{"tf":1.4142135623730951},"3":{"tf":1.0},"34":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"84":{"tf":1.7320508075688772},"93":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":4,"docs":{"1":{"tf":1.0},"50":{"tf":1.0},"53":{"tf":1.7320508075688772},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"139":{"tf":1.0},"160":{"tf":1.0},"20":{"tf":1.0},"69":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"t":{"df":6,"docs":{"155":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"12":{"tf":1.4142135623730951}}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":7,"docs":{"107":{"tf":1.0},"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":2.8284271247461903},"61":{"tf":1.0},"90":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"d":{"df":3,"docs":{"20":{"tf":1.0},"27":{"tf":1.0},"273":{"tf":1.0}}},"df":0,"docs":{}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"l":{"df":2,"docs":{"138":{"tf":1.0},"160":{"tf":1.0}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"2":{"tf":1.0}}}}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"147":{"tf":1.4142135623730951},"223":{"tf":1.0},"269":{"tf":1.0},"277":{"tf":1.0},"4":{"tf":1.0},"52":{"tf":1.0},"59":{"tf":1.0}},"h":{"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"84":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"l":{"a":{"df":0,"docs":{},"y":{"df":4,"docs":{"56":{"tf":1.0},"57":{"tf":1.0},"62":{"tf":1.0},"87":{"tf":1.0}},"s":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"d":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"21":{"tf":1.0}}}}},"df":4,"docs":{"103":{"tf":2.6457513110645907},"118":{"tf":1.0},"119":{"tf":1.0},"56":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":3,"docs":{"110":{"tf":1.0},"121":{"tf":1.4142135623730951},"89":{"tf":1.4142135623730951}}}}}},"w":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"91":{"tf":1.0}}}}}}}}},"w":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"149":{"tf":1.0}}}}},"df":0,"docs":{},"n":{"df":3,"docs":{"100":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}}}},"z":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}}},"p":{"1":{"0":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"6":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"7":{"0":{"1":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"df":0,"docs":{}},"3":{"7":{"_":{"a":{"0":{"4":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"_":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"f":{"df":1,"docs":{"105":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":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":{"107":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":23,"docs":{"103":{"tf":1.4142135623730951},"134":{"tf":1.7320508075688772},"136":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.4142135623730951},"160":{"tf":1.0},"19":{"tf":1.0},"199":{"tf":2.0},"200":{"tf":1.0},"213":{"tf":1.0},"230":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"44":{"tf":1.4142135623730951},"50":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":2.8284271247461903},"57":{"tf":1.0},"82":{"tf":2.0},"85":{"tf":2.449489742783178},"89":{"tf":1.0},"90":{"tf":2.23606797749979},"91":{"tf":1.0}},"e":{".":{"<":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{".":{"a":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"6":{"4":{"df":1,"docs":{"66":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":2,"docs":{"67":{"tf":1.4142135623730951},"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"x":{"8":{"6":{"_":{"6":{"4":{"df":2,"docs":{"62":{"tf":1.0},"8":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"/":{"df":0,"docs":{},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"85":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"/":{"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":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"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":{},"t":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"d":{"df":2,"docs":{"267":{"tf":1.7320508075688772},"273":{"tf":1.0}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":3,"docs":{"105":{"tf":1.0},"194":{"tf":1.0},"203":{"tf":1.0}}}},"i":{"df":0,"docs":{},"r":{"df":1,"docs":{"74":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"93":{"tf":1.0}}}},"i":{"c":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"3":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":7,"docs":{"130":{"tf":1.4142135623730951},"131":{"tf":2.0},"195":{"tf":1.0},"197":{"tf":1.7320508075688772},"43":{"tf":1.0},"70":{"tf":1.0},"88":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}}}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":1,"docs":{"174":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}},"t":{"df":12,"docs":{"100":{"tf":1.0},"151":{"tf":1.0},"160":{"tf":1.0},"208":{"tf":1.0},"224":{"tf":1.0},"279":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.0},"49":{"tf":1.0},"52":{"tf":1.0},"57":{"tf":1.0},"91":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":5,"docs":{"16":{"tf":1.0},"182":{"tf":1.0},"33":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0}}}},"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"59":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"153":{"tf":1.0},"279":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":1,"docs":{"198":{"tf":1.0}},"t":{"df":6,"docs":{"107":{"tf":1.0},"21":{"tf":1.0},"267":{"tf":1.0},"280":{"tf":1.4142135623730951},"282":{"tf":1.4142135623730951},"65":{"tf":2.0}}}}}},"s":{"df":0,"docs":{},"s":{"df":20,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"197":{"tf":1.7320508075688772},"26":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0},"93":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":4,"docs":{"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":48,"docs":{"10":{"tf":2.449489742783178},"100":{"tf":1.4142135623730951},"101":{"tf":3.0},"102":{"tf":1.7320508075688772},"103":{"tf":1.4142135623730951},"104":{"tf":2.449489742783178},"105":{"tf":1.4142135623730951},"106":{"tf":2.23606797749979},"107":{"tf":1.7320508075688772},"108":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951},"110":{"tf":2.23606797749979},"111":{"tf":1.4142135623730951},"112":{"tf":1.7320508075688772},"113":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"115":{"tf":1.7320508075688772},"116":{"tf":1.7320508075688772},"117":{"tf":2.0},"118":{"tf":2.449489742783178},"119":{"tf":1.4142135623730951},"122":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"15":{"tf":1.0},"166":{"tf":1.4142135623730951},"174":{"tf":2.0},"264":{"tf":1.0},"265":{"tf":3.3166247903554},"266":{"tf":1.4142135623730951},"267":{"tf":2.0},"268":{"tf":1.7320508075688772},"269":{"tf":1.0},"270":{"tf":1.7320508075688772},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":2.0},"35":{"tf":2.0},"37":{"tf":1.4142135623730951},"39":{"tf":1.7320508075688772},"40":{"tf":1.4142135623730951},"9":{"tf":1.0},"93":{"tf":1.0},"99":{"tf":2.0}},"s":{".":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":2,"docs":{"59":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"t":{"df":4,"docs":{"167":{"tf":1.0},"176":{"tf":1.0},"272":{"tf":1.0},"69":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"121":{"tf":1.0},"160":{"tf":1.0},"4":{"tf":1.0},"88":{"tf":1.0}}}},"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"m":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"102":{"tf":1.0},"118":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.0},"196":{"tf":1.0},"86":{"tf":1.7320508075688772},"94":{"tf":1.4142135623730951}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"176":{"tf":1.0},"203":{"tf":1.4142135623730951}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":2.0}}},"df":5,"docs":{"109":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0}},"i":{",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"\"":{"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"114":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"0":{"0":{"0":{"1":{":":{"0":{"1":{":":{"0":{"0":{".":{"0":{"df":1,"docs":{"115":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":0,"docs":{},"e":{"df":0,"docs":{},"m":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"1":{",":{"df":0,"docs":{},"i":{"d":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"1":{"df":1,"docs":{"131":{"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":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"115":{"tf":1.4142135623730951}}}}}}}},"_":{"c":{"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"10":{"tf":1.0},"100":{"tf":1.4142135623730951},"102":{"tf":1.0},"103":{"tf":1.4142135623730951},"112":{"tf":3.7416573867739413},"113":{"tf":2.0},"114":{"tf":1.0},"115":{"tf":2.449489742783178},"116":{"tf":1.0},"118":{"tf":1.0},"166":{"tf":1.4142135623730951},"233":{"tf":1.4142135623730951},"35":{"tf":1.0}},"e":{"_":{"c":{"1":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"5":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":1,"docs":{"112":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":13,"docs":{"101":{"tf":1.4142135623730951},"110":{"tf":2.449489742783178},"111":{"tf":4.123105625617661},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":2.449489742783178},"117":{"tf":1.7320508075688772},"118":{"tf":1.7320508075688772},"119":{"tf":1.0},"234":{"tf":1.4142135623730951},"99":{"tf":1.4142135623730951}}}}},"d":{"df":1,"docs":{"272":{"tf":2.449489742783178}},"f":{"df":1,"docs":{"191":{"tf":1.0}}}},"df":5,"docs":{"118":{"tf":1.0},"199":{"tf":1.0},"20":{"tf":2.23606797749979},"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}},"r":{"df":6,"docs":{"144":{"tf":1.0},"161":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"29":{"tf":1.4142135623730951}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":7,"docs":{"100":{"tf":1.0},"111":{"tf":1.0},"13":{"tf":1.0},"155":{"tf":1.0},"166":{"tf":1.0},"19":{"tf":1.0},"261":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"202":{"tf":1.0}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"111":{"tf":1.0},"233":{"tf":1.0},"234":{"tf":1.0},"39":{"tf":1.0}}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":4,"docs":{"118":{"tf":1.7320508075688772},"157":{"tf":1.0},"72":{"tf":1.4142135623730951},"74":{"tf":1.0}}}},"t":{"df":1,"docs":{"72":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":11,"docs":{"13":{"tf":1.0},"133":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"243":{"tf":1.0},"96":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"h":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":3,"docs":{"12":{"tf":1.0},"134":{"tf":1.0},"278":{"tf":1.0}}}}},"df":0,"docs":{},"i":{"df":3,"docs":{"267":{"tf":1.0},"273":{"tf":1.7320508075688772},"35":{"tf":1.0}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":3,"docs":{"0":{"tf":1.0},"2":{"tf":1.0},"219":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"202":{"tf":1.7320508075688772}}}}},"df":0,"docs":{}},"y":{"@":{"0":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":6,"docs":{"115":{"tf":1.0},"155":{"tf":1.0},"191":{"tf":1.0},"208":{"tf":1.0},"35":{"tf":1.0},"97":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"109":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":1,"docs":{"15":{"tf":1.0}},"n":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"l":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"1":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":4,"docs":{"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.7320508075688772}}}}}},"df":3,"docs":{"105":{"tf":2.449489742783178},"115":{"tf":1.0},"160":{"tf":1.0}},"g":{"df":1,"docs":{"69":{"tf":1.0}}},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"df":2,"docs":{"105":{"tf":1.4142135623730951},"109":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"133":{"tf":1.0}}}}}}}},"k":{"c":{"df":0,"docs":{},"s":{"#":{"1":{"1":{"df":1,"docs":{"156":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"g":{"df":2,"docs":{"70":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"c":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{},"s":{"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"47":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"df":4,"docs":{"134":{"tf":1.0},"153":{"tf":1.7320508075688772},"157":{"tf":1.4142135623730951},"256":{"tf":1.4142135623730951}}}},"l":{"a":{"c":{"df":0,"docs":{},"e":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"111":{"tf":1.0},"157":{"tf":1.0},"203":{"tf":1.4142135623730951}},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"d":{"df":3,"docs":{"10":{"tf":1.0},"77":{"tf":1.0},"90":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"n":{"df":2,"docs":{"121":{"tf":1.0},"156":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"'":{"df":1,"docs":{"1":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"=":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"126":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"109":{"tf":1.0}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"/":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"125":{"tf":1.4142135623730951}}}}}}},"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":{"102":{"tf":1.0},"109":{"tf":1.0},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"=":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"201":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"@":{"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":2,"docs":{"108":{"tf":1.0},"272":{"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":42,"docs":{"0":{"tf":2.449489742783178},"1":{"tf":1.0},"10":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.7320508075688772},"103":{"tf":2.449489742783178},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"122":{"tf":1.7320508075688772},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.4142135623730951},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"14":{"tf":1.0},"15":{"tf":1.4142135623730951},"16":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.0},"2":{"tf":2.0},"219":{"tf":1.0},"236":{"tf":1.0},"243":{"tf":1.0},"264":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":2.449489742783178},"272":{"tf":2.0},"277":{"tf":2.23606797749979},"3":{"tf":2.8284271247461903},"35":{"tf":1.4142135623730951},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.7320508075688772},"40":{"tf":2.0},"5":{"tf":1.4142135623730951},"7":{"tf":1.0},"89":{"tf":1.0},"94":{"tf":1.0}}}}}}}},"df":0,"docs":{},"u":{"df":1,"docs":{"9":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"131":{"tf":1.4142135623730951}}}}},"o":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"137":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":3,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"36":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"l":{"df":1,"docs":{"116":{"tf":1.0}}}},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"15":{"tf":1.0},"280":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"279":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"126":{"tf":1.0}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":25,"docs":{"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"122":{"tf":1.0},"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"147":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"20":{"tf":1.0},"202":{"tf":1.4142135623730951},"265":{"tf":1.0},"270":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"40":{"tf":1.0},"65":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"158":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":15,"docs":{"111":{"tf":2.8284271247461903},"116":{"tf":1.0},"120":{"tf":2.0},"176":{"tf":1.0},"212":{"tf":1.4142135623730951},"265":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"272":{"tf":1.7320508075688772},"62":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"80":{"tf":1.0},"99":{"tf":1.0}}}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"c":{"df":9,"docs":{"122":{"tf":1.0},"279":{"tf":1.7320508075688772},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":2,"docs":{"10":{"tf":1.4142135623730951},"8":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"70":{"tf":1.0}}},"df":0,"docs":{}}},"df":3,"docs":{"281":{"tf":1.0},"48":{"tf":1.0},"67":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"282":{"tf":1.0},"56":{"tf":1.0}}}},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"277":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":2,"docs":{"154":{"tf":1.4142135623730951},"155":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":6,"docs":{"107":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"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":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":6,"docs":{"61":{"tf":1.4142135623730951},"62":{"tf":1.0},"63":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"176":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"221":{"tf":1.0},"263":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"o":{"df":0,"docs":{},"u":{"df":1,"docs":{"160":{"tf":1.0}}}}}}},"i":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"262":{"tf":1.0}}}}}}},"df":0,"docs":{}},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"3":{"tf":2.23606797749979}}}}}},"df":0,"docs":{}},"v":{"a":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"253":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":4,"docs":{"154":{"tf":1.7320508075688772},"201":{"tf":1.0},"71":{"tf":1.0},"74":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"o":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"116":{"tf":1.0},"144":{"tf":1.0},"267":{"tf":1.0}}}}}},"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"201":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":23,"docs":{"120":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.7320508075688772},"150":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":2.6457513110645907},"2":{"tf":1.0},"212":{"tf":1.0},"215":{"tf":1.4142135623730951},"219":{"tf":1.0},"260":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"43":{"tf":1.4142135623730951},"59":{"tf":1.0},"60":{"tf":1.0},"65":{"tf":1.4142135623730951},"76":{"tf":1.0},"89":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":6,"docs":{"116":{"tf":1.0},"120":{"tf":2.0},"212":{"tf":1.4142135623730951},"254":{"tf":1.0},"83":{"tf":1.0},"99":{"tf":1.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"137":{"tf":1.0}},"t":{"df":10,"docs":{"0":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"190":{"tf":1.0},"2":{"tf":1.0},"237":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.4142135623730951},"40":{"tf":1.0},"5":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"21":{"tf":1.4142135623730951},"24":{"tf":1.7320508075688772},"25":{"tf":1.0},"26":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"s":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"87":{"tf":1.0}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"194":{"tf":1.0},"67":{"tf":1.7320508075688772}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":8,"docs":{"168":{"tf":2.8284271247461903},"176":{"tf":2.8284271247461903},"20":{"tf":1.0},"21":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"59":{"tf":1.0},"6":{"tf":1.0}}}}}}},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"90":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}},"df":1,"docs":{"90":{"tf":1.0}},"e":{"c":{"df":0,"docs":{},"t":{"'":{"df":1,"docs":{"157":{"tf":1.0}}},"df":28,"docs":{"0":{"tf":1.0},"136":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"156":{"tf":1.4142135623730951},"157":{"tf":1.0},"158":{"tf":1.0},"204":{"tf":1.0},"205":{"tf":1.4142135623730951},"206":{"tf":1.0},"211":{"tf":1.0},"226":{"tf":1.0},"227":{"tf":1.0},"263":{"tf":1.0},"3":{"tf":1.0},"39":{"tf":1.0},"50":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"64":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.449489742783178},"90":{"tf":1.4142135623730951},"91":{"tf":1.7320508075688772},"92":{"tf":1.0},"93":{"tf":2.23606797749979},"94":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"c":{"df":2,"docs":{"202":{"tf":1.7320508075688772},"203":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"131":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"118":{"tf":1.0},"272":{"tf":1.0},"80":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":9,"docs":{"112":{"tf":1.4142135623730951},"267":{"tf":5.0990195135927845},"268":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":1.0},"273":{"tf":2.23606797749979},"85":{"tf":1.4142135623730951},"86":{"tf":1.0},"88":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"s":{"df":12,"docs":{"156":{"tf":1.0},"158":{"tf":2.0},"16":{"tf":2.0},"160":{"tf":1.4142135623730951},"18":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.0},"27":{"tf":1.0},"283":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.7320508075688772},"38":{"tf":1.0}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"s":{"df":1,"docs":{"209":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":9,"docs":{"13":{"tf":1.0},"138":{"tf":1.7320508075688772},"143":{"tf":1.4142135623730951},"19":{"tf":1.0},"254":{"tf":1.0},"36":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"g":{"df":0,"docs":{},"p":{"df":1,"docs":{"73":{"tf":1.0}}}}},"df":7,"docs":{"100":{"tf":1.0},"147":{"tf":1.0},"188":{"tf":1.0},"214":{"tf":1.4142135623730951},"223":{"tf":1.0},"241":{"tf":1.0},"242":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":2,"docs":{"53":{"tf":1.0},"6":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":7,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":2.0},"139":{"tf":2.23606797749979},"182":{"tf":1.0},"3":{"tf":1.0}}}},"i":{"d":{"df":28,"docs":{"0":{"tf":1.4142135623730951},"115":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.4142135623730951},"148":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"212":{"tf":1.0},"240":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.7320508075688772},"282":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"4":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"51":{"tf":1.0},"52":{"tf":1.4142135623730951},"56":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"84":{"tf":1.0},"89":{"tf":1.4142135623730951},"96":{"tf":1.4142135623730951}},"e":{"d":{"df":0,"docs":{},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"77":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"i":{"df":2,"docs":{"166":{"tf":1.0},"35":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"94":{"tf":1.0}}}},"t":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}},"y":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"b":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"a":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"i":{"c":{"df":13,"docs":{"134":{"tf":1.0},"135":{"tf":1.0},"153":{"tf":2.23606797749979},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"256":{"tf":1.0},"69":{"tf":2.8284271247461903},"70":{"tf":2.449489742783178},"71":{"tf":1.0},"74":{"tf":2.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":2,"docs":{"150":{"tf":1.0},"3":{"tf":1.0}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":1,"docs":{"133":{"tf":1.0}}}}}}},"df":6,"docs":{"111":{"tf":1.4142135623730951},"143":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"280":{"tf":1.0}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":4,"docs":{"10":{"tf":1.0},"190":{"tf":1.0},"198":{"tf":1.0},"48":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"160":{"tf":1.0}}}},"t":{"df":2,"docs":{"107":{"tf":1.0},"65":{"tf":1.7320508075688772}}}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"3":{"df":1,"docs":{"199":{"tf":1.0}}},"df":2,"docs":{"145":{"tf":1.0},"257":{"tf":1.0}}}}}}}},"q":{"c":{"a":{",":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"273":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":1,"docs":{"195":{"tf":2.0}}},"df":0,"docs":{}}}},"df":1,"docs":{"94":{"tf":1.0}},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"\\":{"0":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"108":{"tf":1.0},"272":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}},".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"129":{"tf":1.0}}}}}},"df":24,"docs":{"108":{"tf":2.0},"109":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":2.23606797749979},"116":{"tf":2.23606797749979},"118":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.4142135623730951},"131":{"tf":1.0},"193":{"tf":1.0},"197":{"tf":1.7320508075688772},"235":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"270":{"tf":2.23606797749979},"271":{"tf":1.7320508075688772},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":2.23606797749979},"39":{"tf":1.0},"43":{"tf":1.4142135623730951},"62":{"tf":1.4142135623730951},"83":{"tf":1.0},"98":{"tf":1.0}},"’":{"df":1,"docs":{"235":{"tf":1.0}}}}}},"m":{"df":1,"docs":{"277":{"tf":1.0}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"u":{"a":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":1,"docs":{"111":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":1,"docs":{"209":{"tf":1.4142135623730951}}}}}},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}}}}},"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"182":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":4,"docs":{"204":{"tf":1.0},"282":{"tf":1.7320508075688772},"42":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"=":{"<":{"1":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"i":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"49":{"tf":1.0},"9":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"132":{"tf":1.0},"159":{"tf":1.0},"59":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":1,"docs":{"156":{"tf":1.4142135623730951}}}}}},"r":{"&":{"d":{",":{"a":{"df":1,"docs":{"20":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"5":{"2":{"1":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.4142135623730951}},"i":{"d":{"df":1,"docs":{"203":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"20":{"tf":1.0}}}},"m":{"df":1,"docs":{"116":{"tf":2.0}},"m":{"b":{"df":1,"docs":{"85":{"tf":2.0}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"g":{"df":4,"docs":{"108":{"tf":1.0},"116":{"tf":2.0},"272":{"tf":1.4142135623730951},"80":{"tf":1.0}}}},"s":{"df":0,"docs":{},"p":{"b":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"15":{"tf":1.0}}}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"272":{"tf":1.0}}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"df":2,"docs":{"279":{"tf":1.0},"281":{"tf":2.0}}}},"c":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"87":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":1,"docs":{"20":{"tf":3.0}},"e":{"a":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"138":{"tf":1.0}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"103":{"tf":1.0}}}}}},"d":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"148":{"tf":1.0},"259":{"tf":1.0}}}},"df":0,"docs":{}},"df":6,"docs":{"20":{"tf":1.0},"203":{"tf":1.4142135623730951},"272":{"tf":1.0},"28":{"tf":1.0},"31":{"tf":1.7320508075688772},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"265":{"tf":1.0},"45":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.0},"200":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"219":{"tf":1.0},"40":{"tf":1.0}}},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"265":{"tf":1.0},"279":{"tf":1.0},"283":{"tf":1.0}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":10,"docs":{"103":{"tf":1.4142135623730951},"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"d":{"df":6,"docs":{"282":{"tf":1.0},"59":{"tf":2.0},"70":{"tf":1.4142135623730951},"9":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}}}},"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":1,"docs":{"242":{"tf":1.0}}}},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"123":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"65":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"280":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"d":{"df":3,"docs":{"111":{"tf":1.0},"8":{"tf":1.4142135623730951},"83":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"r":{"d":{"df":28,"docs":{"13":{"tf":1.0},"14":{"tf":1.0},"16":{"tf":2.6457513110645907},"17":{"tf":1.0},"18":{"tf":1.0},"19":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"211":{"tf":1.0},"22":{"tf":1.0},"23":{"tf":1.0},"24":{"tf":1.0},"25":{"tf":1.0},"26":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.0},"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.4142135623730951},"36":{"tf":1.0},"37":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"65":{"tf":2.0}}}}}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":7,"docs":{"101":{"tf":1.0},"20":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.4142135623730951},"279":{"tf":1.0},"4":{"tf":1.0},"41":{"tf":1.0}},"t":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}}},"df":1,"docs":{"168":{"tf":1.0}},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":72,"docs":{"10":{"tf":2.23606797749979},"105":{"tf":1.0},"11":{"tf":1.0},"116":{"tf":1.0},"13":{"tf":1.7320508075688772},"131":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"152":{"tf":1.4142135623730951},"153":{"tf":1.0},"207":{"tf":1.0},"212":{"tf":1.0},"262":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"33":{"tf":1.0},"35":{"tf":1.0},"42":{"tf":1.0},"5":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":1.4142135623730951},"52":{"tf":1.0},"55":{"tf":1.7320508075688772},"56":{"tf":1.0},"57":{"tf":1.4142135623730951},"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.0},"7":{"tf":1.7320508075688772},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"74":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"79":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":2.0},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"91":{"tf":1.0},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":1.0},"95":{"tf":1.4142135623730951},"97":{"tf":1.4142135623730951}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"130":{"tf":1.0},"267":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":0,"docs":{}}}}},"g":{"_":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"c":{"2":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"272":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":6,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":2.23606797749979},"273":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"195":{"tf":1.0}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"269":{"tf":1.0},"272":{"tf":1.0}},"r":{"df":2,"docs":{"153":{"tf":1.0},"258":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"6":{"tf":1.4142135623730951}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"111":{"tf":1.0},"70":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"207":{"tf":1.0}}}}}},"df":2,"docs":{"272":{"tf":2.23606797749979},"273":{"tf":1.7320508075688772}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":6,"docs":{"127":{"tf":1.4142135623730951},"204":{"tf":1.4142135623730951},"205":{"tf":1.4142135623730951},"249":{"tf":1.4142135623730951},"26":{"tf":1.0},"88":{"tf":1.0}}}},"df":1,"docs":{"159":{"tf":1.0}},"e":{"a":{"df":0,"docs":{},"s":{"df":47,"docs":{"133":{"tf":1.4142135623730951},"134":{"tf":1.0},"150":{"tf":1.0},"161":{"tf":2.449489742783178},"162":{"tf":2.23606797749979},"163":{"tf":2.0},"164":{"tf":2.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"167":{"tf":1.7320508075688772},"168":{"tf":1.7320508075688772},"169":{"tf":1.7320508075688772},"170":{"tf":2.0},"171":{"tf":2.0},"172":{"tf":2.0},"173":{"tf":1.7320508075688772},"174":{"tf":1.4142135623730951},"175":{"tf":1.7320508075688772},"176":{"tf":1.7320508075688772},"177":{"tf":1.7320508075688772},"178":{"tf":2.0},"179":{"tf":2.0},"180":{"tf":2.0},"181":{"tf":1.7320508075688772},"182":{"tf":1.7320508075688772},"183":{"tf":1.4142135623730951},"184":{"tf":1.4142135623730951},"185":{"tf":2.0},"186":{"tf":2.0},"187":{"tf":1.7320508075688772},"188":{"tf":1.7320508075688772},"189":{"tf":1.4142135623730951},"20":{"tf":1.0},"207":{"tf":1.0},"23":{"tf":1.4142135623730951},"25":{"tf":2.23606797749979},"26":{"tf":1.0},"260":{"tf":1.0},"27":{"tf":1.0},"28":{"tf":1.4142135623730951},"29":{"tf":1.0},"30":{"tf":1.0},"31":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.4142135623730951},"8":{"tf":1.4142135623730951},"81":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"81":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{},"|":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"v":{"df":2,"docs":{"160":{"tf":2.23606797749979},"4":{"tf":1.0}}}},"i":{"df":4,"docs":{"159":{"tf":1.0},"236":{"tf":1.0},"265":{"tf":1.0},"3":{"tf":1.0}}}},"m":{"a":{"df":0,"docs":{},"p":{"df":2,"docs":{"272":{"tf":1.0},"35":{"tf":1.0}}}},"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"df":2,"docs":{"150":{"tf":1.0},"160":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"t":{"df":13,"docs":{"133":{"tf":1.4142135623730951},"198":{"tf":1.0},"219":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"68":{"tf":2.23606797749979},"69":{"tf":2.449489742783178},"70":{"tf":2.449489742783178},"71":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":2.23606797749979},"74":{"tf":1.7320508075688772},"8":{"tf":1.0}},"e":{"df":0,"docs":{},"’":{"df":1,"docs":{"74":{"tf":1.0}}}}},"v":{"df":10,"docs":{"101":{"tf":1.0},"111":{"tf":1.4142135623730951},"112":{"tf":2.23606797749979},"20":{"tf":1.0},"26":{"tf":1.0},"267":{"tf":1.7320508075688772},"268":{"tf":1.0},"273":{"tf":1.4142135623730951},"62":{"tf":1.0},"92":{"tf":1.0}}}}},"n":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"219":{"tf":1.0}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"279":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"l":{"a":{"c":{"df":4,"docs":{"108":{"tf":1.0},"113":{"tf":1.0},"280":{"tf":1.0},"77":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"y":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"n":{"df":1,"docs":{"200":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":2.0},"221":{"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":9,"docs":{"127":{"tf":1.0},"129":{"tf":1.0},"133":{"tf":1.0},"142":{"tf":1.0},"207":{"tf":1.0},"55":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.0},"89":{"tf":1.7320508075688772}}},"y":{"/":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"133":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":3,"docs":{"138":{"tf":1.0},"156":{"tf":1.0},"206":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"c":{"df":5,"docs":{"138":{"tf":1.0},"139":{"tf":1.0},"3":{"tf":1.0},"4":{"tf":1.0},"91":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"q":{"df":1,"docs":{"143":{"tf":1.4142135623730951}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"77":{"tf":1.0}}},"df":0,"docs":{}}},"df":11,"docs":{"133":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.0},"16":{"tf":1.0},"160":{"tf":1.0},"161":{"tf":1.0},"271":{"tf":1.0},"54":{"tf":1.0},"59":{"tf":1.0},"77":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"r":{"df":54,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"103":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.4142135623730951},"120":{"tf":1.0},"122":{"tf":1.0},"138":{"tf":1.7320508075688772},"139":{"tf":2.449489742783178},"143":{"tf":2.0},"145":{"tf":1.0},"147":{"tf":1.0},"160":{"tf":1.0},"169":{"tf":1.7320508075688772},"170":{"tf":1.0},"177":{"tf":1.7320508075688772},"178":{"tf":1.0},"19":{"tf":1.4142135623730951},"195":{"tf":1.7320508075688772},"199":{"tf":1.4142135623730951},"20":{"tf":3.1622776601683795},"203":{"tf":1.0},"21":{"tf":1.4142135623730951},"211":{"tf":1.0},"23":{"tf":1.7320508075688772},"240":{"tf":1.0},"25":{"tf":2.0},"265":{"tf":1.0},"27":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.4142135623730951},"282":{"tf":1.0},"283":{"tf":1.0},"35":{"tf":1.0},"4":{"tf":1.0},"40":{"tf":1.0},"42":{"tf":1.0},"44":{"tf":1.0},"48":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"68":{"tf":1.0},"70":{"tf":1.4142135623730951},"8":{"tf":1.0},"80":{"tf":1.0},"89":{"tf":1.0},"97":{"tf":1.7320508075688772}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":25,"docs":{"0":{"tf":2.23606797749979},"2":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"264":{"tf":2.0},"265":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"3":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}},"t":{"df":5,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.7320508075688772},"120":{"tf":1.4142135623730951},"121":{"tf":1.0},"212":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"208":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"105":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"v":{"df":1,"docs":{"144":{"tf":1.0}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":9,"docs":{"120":{"tf":1.0},"121":{"tf":1.4142135623730951},"13":{"tf":1.0},"240":{"tf":1.0},"269":{"tf":1.0},"84":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":4,"docs":{"105":{"tf":1.0},"2":{"tf":1.0},"35":{"tf":1.0},"52":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"199":{"tf":1.0},"265":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"65":{"tf":1.0},"70":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"65":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"\\":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"g":{"df":1,"docs":{"279":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}}},"df":7,"docs":{"130":{"tf":1.0},"131":{"tf":1.0},"160":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"281":{"tf":1.4142135623730951},"74":{"tf":1.0},"84":{"tf":1.4142135623730951}}}}}},"t":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"139":{"tf":1.0},"141":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":1,"docs":{"69":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"s":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"5":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"35":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.4142135623730951},"20":{"tf":1.0},"91":{"tf":1.0}}}},"s":{"df":2,"docs":{"137":{"tf":1.0},"91":{"tf":1.7320508075688772}}}},"o":{"c":{"df":1,"docs":{"153":{"tf":1.0}}},"df":0,"docs":{}}}},"f":{"c":{"4":{"8":{"8":{"0":{"df":1,"docs":{"253":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"72":{"tf":1.0}}},"g":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"273":{"tf":1.0}}}}}},"i":{"b":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":5,"docs":{"195":{"tf":1.0},"34":{"tf":1.0},"35":{"tf":1.0},"48":{"tf":1.0},"74":{"tf":1.0}}}}},"p":{"df":1,"docs":{"111":{"tf":1.0}}},"s":{"c":{"df":3,"docs":{"15":{"tf":1.0},"80":{"tf":1.0},"97":{"tf":1.0}},"v":{"6":{"4":{"df":4,"docs":{"61":{"tf":1.0},"8":{"tf":1.0},"81":{"tf":1.4142135623730951},"83":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"k":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"282":{"tf":1.0}}}}},"m":{"df":2,"docs":{"196":{"tf":1.0},"72":{"tf":1.0}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"209":{"tf":1.0}}}}},"df":2,"docs":{"130":{"tf":1.0},"20":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"l":{"df":1,"docs":{"202":{"tf":1.0}}}},"m":{"df":0,"docs":{},"s":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"t":{"/":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"/":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"a":{".":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"b":{"df":1,"docs":{"69":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"=":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"v":{"d":{"a":{"1":{"df":2,"docs":{"109":{"tf":1.0},"115":{"tf":1.0}}},"2":{"df":1,"docs":{"118":{"tf":1.0}}},"df":3,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"@":{"<":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"59":{"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":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":14,"docs":{"113":{"tf":1.0},"118":{"tf":2.0},"125":{"tf":1.4142135623730951},"134":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":2.449489742783178},"158":{"tf":1.0},"195":{"tf":1.4142135623730951},"21":{"tf":1.0},"280":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":2.449489742783178},"70":{"tf":1.4142135623730951},"9":{"tf":1.0}},"f":{"df":3,"docs":{"126":{"tf":1.0},"277":{"tf":1.0},"67":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"f":{"df":0,"docs":{},"s":{",":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"=":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{",":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"=":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"_":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}}},"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":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"277":{"tf":1.0}}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"34":{"tf":1.0},"35":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"s":{"a":{"df":2,"docs":{"156":{"tf":1.0},"74":{"tf":1.4142135623730951}}},"df":0,"docs":{},"r":{"c":{"df":3,"docs":{"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"269":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"c":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}},"df":0,"docs":{}},"u":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":5,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"223":{"tf":1.0},"35":{"tf":1.0},"88":{"tf":1.0}}}},"n":{"df":63,"docs":{"1":{"tf":1.0},"10":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"118":{"tf":2.0},"129":{"tf":1.0},"130":{"tf":1.4142135623730951},"133":{"tf":1.0},"149":{"tf":1.0},"15":{"tf":1.0},"160":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.7320508075688772},"176":{"tf":1.0},"178":{"tf":1.7320508075688772},"189":{"tf":1.0},"191":{"tf":1.7320508075688772},"192":{"tf":1.4142135623730951},"193":{"tf":2.449489742783178},"194":{"tf":1.0},"195":{"tf":3.0},"196":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"198":{"tf":2.23606797749979},"199":{"tf":2.0},"200":{"tf":2.0},"201":{"tf":1.4142135623730951},"213":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.4142135623730951},"270":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"279":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"44":{"tf":1.0},"55":{"tf":1.0},"58":{"tf":1.0},"59":{"tf":1.7320508075688772},"60":{"tf":1.7320508075688772},"61":{"tf":2.0},"62":{"tf":2.23606797749979},"63":{"tf":2.0},"64":{"tf":2.0},"65":{"tf":3.0},"66":{"tf":1.4142135623730951},"67":{"tf":1.7320508075688772},"68":{"tf":1.7320508075688772},"69":{"tf":1.4142135623730951},"70":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0},"8":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"83":{"tf":1.7320508075688772},"84":{"tf":1.0},"86":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.0}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"129":{"tf":1.0},"131":{"tf":1.4142135623730951}}}}}},"s":{"df":0,"docs":{},"t":{"df":6,"docs":{"14":{"tf":1.0},"37":{"tf":2.23606797749979},"38":{"tf":1.0},"39":{"tf":2.0},"40":{"tf":2.0},"98":{"tf":1.0}},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"16":{"tf":1.0}}}}}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}}}},"s":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"/":{"df":0,"docs":{},"y":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"/":{"df":0,"docs":{},"g":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"a":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":2,"docs":{"132":{"tf":1.0},"4":{"tf":1.0}}}},"m":{"df":0,"docs":{},"e":{"df":27,"docs":{"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"122":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"65":{"tf":1.0},"69":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.4142135623730951},"88":{"tf":1.0},"92":{"tf":1.0},"96":{"tf":1.0}}},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"130":{"tf":1.0}}}}},"n":{"d":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"e":{"df":3,"docs":{"196":{"tf":1.4142135623730951},"202":{"tf":1.0},"269":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}}}}},"b":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"47":{"tf":2.23606797749979},"49":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":8,"docs":{"134":{"tf":1.7320508075688772},"135":{"tf":1.0},"148":{"tf":1.7320508075688772},"149":{"tf":2.23606797749979},"150":{"tf":2.23606797749979},"151":{"tf":2.6457513110645907},"152":{"tf":1.7320508075688772},"259":{"tf":1.4142135623730951}},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"151":{"tf":1.7320508075688772}}}}}}},"r":{"a":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"s":{"a":{"df":2,"docs":{"105":{"tf":1.0},"236":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"c":{"_":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"0":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"1":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"2":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"3":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"4":{"a":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"a":{"df":0,"docs":{},"l":{"a":{"b":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"5":{"tf":1.0},"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":2,"docs":{"0":{"tf":1.0},"158":{"tf":1.0}}}}},"df":8,"docs":{"134":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.4142135623730951},"158":{"tf":1.0},"204":{"tf":1.0},"249":{"tf":1.4142135623730951},"260":{"tf":1.4142135623730951},"272":{"tf":2.0}},"e":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":3,"docs":{"168":{"tf":1.0},"34":{"tf":1.7320508075688772},"35":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":1,"docs":{"161":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":5,"docs":{"13":{"tf":1.4142135623730951},"15":{"tf":1.0},"20":{"tf":1.4142135623730951},"34":{"tf":1.0},"59":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"267":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":4,"docs":{"219":{"tf":1.0},"5":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":13,"docs":{"126":{"tf":1.0},"130":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"160":{"tf":1.0},"195":{"tf":2.23606797749979},"199":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"65":{"tf":2.449489742783178},"90":{"tf":1.0}}}}}},"u":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":2,"docs":{"267":{"tf":1.0},"269":{"tf":1.7320508075688772}}}}},"df":2,"docs":{"272":{"tf":3.3166247903554},"273":{"tf":1.0}}}},"d":{"a":{"df":1,"docs":{"79":{"tf":1.0}}},"df":3,"docs":{"66":{"tf":1.4142135623730951},"67":{"tf":2.449489742783178},"81":{"tf":1.4142135623730951}}},"df":1,"docs":{"199":{"tf":1.7320508075688772}},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"116":{"tf":1.0}}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"176":{"tf":1.0},"272":{"tf":1.0}},"o":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"105":{"tf":1.0},"267":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"283":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":12,"docs":{"111":{"tf":1.0},"20":{"tf":1.0},"272":{"tf":1.4142135623730951},"278":{"tf":1.0},"41":{"tf":1.0},"45":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"89":{"tf":1.0},"93":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"r":{"df":77,"docs":{"0":{"tf":2.0},"10":{"tf":1.0},"13":{"tf":1.0},"134":{"tf":2.6457513110645907},"135":{"tf":1.7320508075688772},"136":{"tf":1.7320508075688772},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"140":{"tf":2.0},"141":{"tf":2.23606797749979},"142":{"tf":1.4142135623730951},"143":{"tf":1.4142135623730951},"144":{"tf":1.4142135623730951},"145":{"tf":1.4142135623730951},"146":{"tf":1.4142135623730951},"147":{"tf":2.0},"148":{"tf":1.0},"149":{"tf":1.4142135623730951},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.4142135623730951},"154":{"tf":1.0},"155":{"tf":2.23606797749979},"156":{"tf":1.4142135623730951},"157":{"tf":2.0},"158":{"tf":1.4142135623730951},"159":{"tf":2.6457513110645907},"160":{"tf":2.23606797749979},"166":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.4142135623730951},"19":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":2.6457513110645907},"2":{"tf":1.0},"208":{"tf":1.4142135623730951},"209":{"tf":1.0},"219":{"tf":1.0},"226":{"tf":1.0},"240":{"tf":1.0},"241":{"tf":1.4142135623730951},"248":{"tf":1.0},"254":{"tf":1.0},"260":{"tf":1.4142135623730951},"261":{"tf":1.7320508075688772},"263":{"tf":1.4142135623730951},"279":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":2.23606797749979},"283":{"tf":1.0},"3":{"tf":3.0},"34":{"tf":2.0},"35":{"tf":1.4142135623730951},"36":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":2.449489742783178},"41":{"tf":1.0},"45":{"tf":2.449489742783178},"46":{"tf":2.23606797749979},"47":{"tf":2.6457513110645907},"48":{"tf":2.0},"49":{"tf":3.1622776601683795},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.7320508075688772},"72":{"tf":1.4142135623730951},"73":{"tf":1.0},"84":{"tf":1.7320508075688772},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}},"d":{"df":1,"docs":{"90":{"tf":1.0}}},"df":0,"docs":{},"e":{"df":44,"docs":{"10":{"tf":1.7320508075688772},"100":{"tf":1.0},"101":{"tf":1.0},"105":{"tf":1.0},"109":{"tf":1.0},"11":{"tf":1.0},"111":{"tf":1.0},"12":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.7320508075688772},"136":{"tf":1.0},"142":{"tf":1.0},"15":{"tf":1.0},"151":{"tf":1.0},"193":{"tf":1.0},"196":{"tf":1.0},"198":{"tf":1.0},"21":{"tf":1.0},"219":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.0},"279":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"49":{"tf":1.0},"5":{"tf":1.0},"54":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.4142135623730951},"72":{"tf":1.0},"76":{"tf":1.0},"78":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.4142135623730951},"90":{"tf":1.0},"94":{"tf":1.4142135623730951},"96":{"tf":1.0}},"m":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"116":{"tf":1.0},"265":{"tf":1.4142135623730951},"281":{"tf":1.0},"84":{"tf":1.0}}},"n":{"df":1,"docs":{"67":{"tf":1.0}}}},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":7,"docs":{"106":{"tf":1.7320508075688772},"151":{"tf":1.0},"194":{"tf":1.0},"196":{"tf":1.4142135623730951},"281":{"tf":1.0},"50":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}},"f":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"43":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}}}}},"df":1,"docs":{"93":{"tf":1.0}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"237":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}}},"n":{"d":{"df":2,"docs":{"133":{"tf":1.4142135623730951},"223":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"88":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":10,"docs":{"100":{"tf":1.4142135623730951},"113":{"tf":1.0},"157":{"tf":1.4142135623730951},"184":{"tf":1.0},"189":{"tf":1.0},"202":{"tf":1.0},"23":{"tf":1.0},"240":{"tf":1.0},"30":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"b":{"df":1,"docs":{"212":{"tf":1.0}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{",":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}},"@":{"3":{"1":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"3":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"4":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"5":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"d":{"0":{"0":{"0":{"0":{"df":3,"docs":{"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"0":{"0":{"0":{"0":{"0":{"0":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"7":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"8":{"0":{"0":{"0":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":7,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"130":{"tf":1.4142135623730951},"197":{"tf":1.4142135623730951},"27":{"tf":1.0},"65":{"tf":1.0},"9":{"tf":1.0}}}},"df":3,"docs":{"105":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0}}},"v":{"df":3,"docs":{"146":{"tf":1.0},"149":{"tf":1.0},"190":{"tf":1.4142135623730951}},"e":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":15,"docs":{"105":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"13":{"tf":1.0},"133":{"tf":1.7320508075688772},"166":{"tf":1.0},"174":{"tf":1.0},"188":{"tf":1.0},"199":{"tf":1.4142135623730951},"236":{"tf":1.7320508075688772},"35":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"80":{"tf":1.0},"88":{"tf":1.0}}}},"i":{"c":{"df":8,"docs":{"1":{"tf":1.0},"128":{"tf":1.0},"133":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.4142135623730951},"50":{"tf":1.0},"52":{"tf":1.7320508075688772},"96":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{".":{"df":0,"docs":{},"u":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"94":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"t":{"df":39,"docs":{"103":{"tf":2.23606797749979},"111":{"tf":1.0},"112":{"tf":1.4142135623730951},"113":{"tf":1.0},"116":{"tf":1.0},"118":{"tf":1.7320508075688772},"128":{"tf":1.0},"129":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"132":{"tf":1.0},"143":{"tf":1.0},"153":{"tf":1.0},"199":{"tf":1.4142135623730951},"207":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"223":{"tf":1.0},"224":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"278":{"tf":1.0},"283":{"tf":1.0},"43":{"tf":2.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":3.1622776601683795},"72":{"tf":1.0},"73":{"tf":1.0},"76":{"tf":1.4142135623730951},"80":{"tf":1.0},"83":{"tf":1.0},"87":{"tf":1.0},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":1,"docs":{"269":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"p":{"df":15,"docs":{"121":{"tf":1.0},"146":{"tf":1.0},"195":{"tf":1.4142135623730951},"265":{"tf":1.4142135623730951},"266":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"71":{"tf":1.0},"72":{"tf":1.0},"73":{"tf":1.4142135623730951}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":13,"docs":{"101":{"tf":1.0},"116":{"tf":1.0},"130":{"tf":1.0},"133":{"tf":1.0},"158":{"tf":1.0},"190":{"tf":1.0},"202":{"tf":1.0},"24":{"tf":1.0},"272":{"tf":1.7320508075688772},"43":{"tf":1.0},"44":{"tf":1.0},"5":{"tf":1.0},"85":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{}},"d":{".":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":11,"docs":{"10":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":2.0},"191":{"tf":1.0},"204":{"tf":1.0},"207":{"tf":1.0},"25":{"tf":1.0},"282":{"tf":1.0},"52":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}}},"df":1,"docs":{"72":{"tf":1.0}},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":2,"docs":{"43":{"tf":1.0},"47":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{},"n":{"+":{"df":0,"docs":{},"f":{"1":{"0":{"df":1,"docs":{"195":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"175":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"93":{"tf":1.0}}}}},"df":1,"docs":{"207":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}}}},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":12,"docs":{"190":{"tf":1.7320508075688772},"191":{"tf":1.4142135623730951},"192":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}},"df":9,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":1.0},"156":{"tf":1.0},"61":{"tf":1.0},"7":{"tf":1.0},"78":{"tf":1.0},"86":{"tf":1.0},"88":{"tf":1.0},"90":{"tf":1.4142135623730951}},"n":{"df":1,"docs":{"85":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"t":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"130":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"62":{"tf":1.0}}}}}},"df":1,"docs":{"62":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.4142135623730951},"118":{"tf":1.0},"127":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.7320508075688772},"91":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}},"n":{"a":{"df":0,"docs":{},"l":{"df":3,"docs":{"115":{"tf":1.4142135623730951},"150":{"tf":1.0},"229":{"tf":1.0}}},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":3,"docs":{"134":{"tf":1.4142135623730951},"142":{"tf":1.0},"252":{"tf":1.0}}}}}},"df":14,"docs":{"133":{"tf":1.0},"134":{"tf":2.0},"142":{"tf":2.0},"143":{"tf":1.0},"144":{"tf":2.6457513110645907},"145":{"tf":2.449489742783178},"146":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.4142135623730951},"46":{"tf":1.0},"77":{"tf":1.0}},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}}}},"df":2,"docs":{"16":{"tf":1.0},"211":{"tf":1.0}}},"df":0,"docs":{}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":5,"docs":{"102":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"279":{"tf":1.0},"94":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":3,"docs":{"149":{"tf":1.0},"282":{"tf":1.0},"96":{"tf":1.0}}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"116":{"tf":1.0},"279":{"tf":1.0},"282":{"tf":1.0},"40":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"157":{"tf":1.0}}}}},"i":{"c":{"df":1,"docs":{"118":{"tf":1.0}}},"df":1,"docs":{"62":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"3":{"tf":1.0},"35":{"tf":1.0},"65":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}},"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"1":{"tf":1.0}}}},"df":0,"docs":{}}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":6,"docs":{"113":{"tf":1.0},"157":{"tf":1.0},"211":{"tf":1.0},"238":{"tf":1.0},"71":{"tf":1.0},"72":{"tf":2.0}}}}},"z":{"df":0,"docs":{},"e":{"df":11,"docs":{"108":{"tf":1.0},"111":{"tf":1.7320508075688772},"112":{"tf":1.0},"113":{"tf":1.0},"116":{"tf":1.0},"21":{"tf":1.0},"24":{"tf":1.7320508075688772},"267":{"tf":1.0},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"279":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"195":{"tf":1.4142135623730951}},"t":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"=":{"\"":{"df":0,"docs":{},"y":{"df":1,"docs":{"88":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"df":2,"docs":{"237":{"tf":1.4142135623730951},"94":{"tf":1.0}}}},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"157":{"tf":1.0}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":4.58257569495584},"112":{"tf":1.4142135623730951},"156":{"tf":1.0}}}},"s":{"a":{"df":9,"docs":{"135":{"tf":1.0},"136":{"tf":2.23606797749979},"137":{"tf":1.7320508075688772},"138":{"tf":2.449489742783178},"139":{"tf":1.0},"166":{"tf":1.0},"182":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"m":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"111":{"tf":1.0},"13":{"tf":1.4142135623730951},"279":{"tf":1.0},"57":{"tf":1.0},"80":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"111":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{"df":2,"docs":{"209":{"tf":1.0},"280":{"tf":1.0}},"e":{"df":0,"docs":{},"e":{"df":1,"docs":{"273":{"tf":1.0}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"107":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":1,"docs":{"267":{"tf":1.7320508075688772}}}},"p":{"df":1,"docs":{"130":{"tf":1.0}}}},"o":{"c":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":4,"docs":{"105":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"238":{"tf":1.4142135623730951}},"k":{",":{"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"130":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":2,"docs":{"111":{"tf":1.0},"25":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"v":{"2":{"df":1,"docs":{"156":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":31,"docs":{"0":{"tf":2.0},"1":{"tf":1.0},"132":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":2.449489742783178},"136":{"tf":1.0},"138":{"tf":1.4142135623730951},"144":{"tf":2.0},"148":{"tf":2.449489742783178},"149":{"tf":1.4142135623730951},"15":{"tf":1.7320508075688772},"150":{"tf":1.4142135623730951},"151":{"tf":1.0},"152":{"tf":1.0},"166":{"tf":1.0},"2":{"tf":1.0},"207":{"tf":1.0},"211":{"tf":1.0},"213":{"tf":1.0},"224":{"tf":1.0},"236":{"tf":1.0},"259":{"tf":1.7320508075688772},"262":{"tf":1.7320508075688772},"263":{"tf":1.0},"3":{"tf":1.4142135623730951},"4":{"tf":1.4142135623730951},"5":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.0},"9":{"tf":1.0}}}},"df":0,"docs":{}}}},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"159":{"tf":1.0}}},"i":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":8,"docs":{"100":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.4142135623730951},"156":{"tf":2.0}}}}},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"91":{"tf":1.0},"96":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":2,"docs":{"13":{"tf":1.0},"282":{"tf":1.0}}},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"56":{"tf":1.0},"57":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"202":{"tf":1.0}}}},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}},"u":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"113":{"tf":1.0},"203":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"r":{"c":{"df":50,"docs":{"0":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"133":{"tf":1.0},"134":{"tf":1.0},"137":{"tf":1.0},"138":{"tf":1.4142135623730951},"139":{"tf":2.0},"141":{"tf":2.0},"143":{"tf":1.0},"149":{"tf":2.23606797749979},"150":{"tf":1.4142135623730951},"191":{"tf":1.0},"206":{"tf":1.0},"208":{"tf":1.0},"209":{"tf":1.0},"211":{"tf":1.0},"212":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"224":{"tf":1.0},"225":{"tf":1.0},"226":{"tf":1.4142135623730951},"227":{"tf":1.4142135623730951},"230":{"tf":1.0},"235":{"tf":1.4142135623730951},"236":{"tf":1.0},"240":{"tf":1.0},"243":{"tf":1.0},"245":{"tf":1.0},"253":{"tf":1.0},"255":{"tf":1.0},"257":{"tf":1.0},"259":{"tf":1.0},"262":{"tf":1.0},"263":{"tf":1.0},"265":{"tf":1.0},"271":{"tf":1.7320508075688772},"274":{"tf":2.0},"3":{"tf":1.0},"39":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"78":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"a":{"c":{"df":0,"docs":{},"e":{"df":6,"docs":{"202":{"tf":1.0},"209":{"tf":1.0},"25":{"tf":1.0},"35":{"tf":1.0},"50":{"tf":1.0},"98":{"tf":1.0}},"—":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"50":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"d":{"df":0,"docs":{},"x":{"df":3,"docs":{"149":{"tf":2.0},"151":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":1,"docs":{"70":{"tf":1.0}},"i":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"118":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":26,"docs":{"1":{"tf":1.0},"100":{"tf":1.0},"120":{"tf":1.0},"128":{"tf":1.7320508075688772},"131":{"tf":1.0},"138":{"tf":1.0},"149":{"tf":2.0},"151":{"tf":1.0},"168":{"tf":1.0},"169":{"tf":1.0},"176":{"tf":1.0},"177":{"tf":1.0},"243":{"tf":1.0},"267":{"tf":1.0},"279":{"tf":1.4142135623730951},"281":{"tf":2.6457513110645907},"282":{"tf":2.0},"35":{"tf":1.0},"36":{"tf":1.0},"44":{"tf":1.0},"45":{"tf":1.0},"8":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}},"i":{"c":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":4,"docs":{"130":{"tf":1.4142135623730951},"236":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.7320508075688772}}}}}},"df":0,"docs":{},"e":{"d":{"df":4,"docs":{"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"70":{"tf":1.0}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"54":{"tf":1.0}}}}}},"s":{"d":{"df":3,"docs":{"111":{"tf":2.0},"123":{"tf":1.0},"239":{"tf":1.4142135623730951}}},"df":0,"docs":{},"h":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"59":{"tf":1.0}}}}}},"/":{"df":0,"docs":{},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},":":{"/":{"/":{"]":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"70":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"@":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}},"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":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"69":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}},"d":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"70":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":10,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"282":{"tf":1.0},"59":{"tf":1.4142135623730951},"68":{"tf":1.4142135623730951},"69":{"tf":3.872983346207417},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"9":{"tf":1.0},"94":{"tf":1.4142135623730951}}},"i":{"d":{"/":{"df":0,"docs":{},"p":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"10":{"tf":1.0}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"l":{"/":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}},"df":1,"docs":{"201":{"tf":1.0}}},"r":{"c":{"df":5,"docs":{"0":{"tf":1.4142135623730951},"20":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"3":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":2,"docs":{"0":{"tf":1.0},"188":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":12,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"14":{"tf":1.0},"147":{"tf":1.0},"15":{"tf":1.7320508075688772},"2":{"tf":1.0},"20":{"tf":1.0},"227":{"tf":1.0},"50":{"tf":2.6457513110645907},"51":{"tf":1.0},"52":{"tf":1.0},"53":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"2":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"=":{"/":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"/":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"/":{"0":{"df":0,"docs":{},"m":{"b":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"n":{"a":{"8":{"df":0,"docs":{},"h":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"z":{"1":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"3":{"df":0,"docs":{},"n":{"9":{"9":{"df":0,"docs":{},"f":{"0":{"df":0,"docs":{},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"r":{"4":{"df":0,"docs":{},"v":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":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":{"133":{"tf":1.0},"40":{"tf":1.0},"66":{"tf":1.0}}}},"n":{"d":{"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"201":{"tf":1.0}}}}},"r":{"d":{"df":4,"docs":{"149":{"tf":1.4142135623730951},"253":{"tf":1.0},"263":{"tf":1.0},"98":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"t":{"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.0},"109":{"tf":1.7320508075688772},"111":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.4142135623730951},"116":{"tf":1.0},"118":{"tf":1.0},"126":{"tf":1.4142135623730951},"130":{"tf":2.0},"195":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.4142135623730951},"272":{"tf":1.4142135623730951},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"49":{"tf":1.0},"76":{"tf":1.0},"94":{"tf":1.7320508075688772}}}},"t":{"df":0,"docs":{},"e":{"df":9,"docs":{"119":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"20":{"tf":1.4142135623730951},"239":{"tf":1.0},"265":{"tf":1.7320508075688772},"27":{"tf":1.0},"4":{"tf":1.0},"65":{"tf":1.0}}},"i":{"c":{"df":2,"docs":{"116":{"tf":1.0},"35":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"u":{"df":24,"docs":{"10":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"11":{"tf":1.0},"143":{"tf":1.0},"16":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"18":{"tf":1.4142135623730951},"182":{"tf":1.0},"267":{"tf":2.23606797749979},"268":{"tf":1.0},"272":{"tf":2.23606797749979},"273":{"tf":2.0},"33":{"tf":1.4142135623730951},"38":{"tf":1.4142135623730951},"40":{"tf":1.4142135623730951},"49":{"tf":1.0},"51":{"tf":1.0},"6":{"tf":1.4142135623730951},"7":{"tf":1.0},"8":{"tf":1.0},"9":{"tf":1.0}},"s":{"=":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{}}}}},"d":{"df":1,"docs":{"240":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{",":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"x":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{",":{"df":0,"docs":{},"i":{"d":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"1":{",":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":1,"docs":{"130":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":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":{"197":{"tf":1.4142135623730951}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":10,"docs":{"12":{"tf":1.7320508075688772},"134":{"tf":1.0},"160":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":1.0},"270":{"tf":1.0},"283":{"tf":1.0},"61":{"tf":1.0},"69":{"tf":1.0},"89":{"tf":1.0}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":5,"docs":{"122":{"tf":1.0},"156":{"tf":1.0},"281":{"tf":1.0},"65":{"tf":1.0},"80":{"tf":1.0}}}}},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"94":{"tf":1.0}}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"g":{"df":4,"docs":{"153":{"tf":1.7320508075688772},"156":{"tf":1.4142135623730951},"51":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":9,"docs":{"103":{"tf":1.0},"144":{"tf":1.0},"146":{"tf":1.4142135623730951},"153":{"tf":1.4142135623730951},"191":{"tf":1.0},"28":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.0},"69":{"tf":1.4142135623730951}}}}},"r":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":0,"docs":{},"t":{"df":1,"docs":{"146":{"tf":1.0}},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"146":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}}}},"df":1,"docs":{"85":{"tf":1.4142135623730951}},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"107":{"tf":1.0},"223":{"tf":1.0}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"111":{"tf":1.0}}}}},"i":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"23":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"118":{"tf":1.0},"273":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"126":{"tf":1.0},"131":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"111":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}}},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":5,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"19":{"tf":1.0},"281":{"tf":1.0},"93":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}}},"u":{"b":{"df":1,"docs":{"46":{"tf":1.4142135623730951}}},"d":{"df":0,"docs":{},"i":{"df":3,"docs":{"0":{"tf":1.0},"19":{"tf":1.0},"264":{"tf":1.0}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":2,"docs":{"202":{"tf":1.0},"54":{"tf":1.0}}}}}},"u":{"b":{"d":{"df":0,"docs":{},"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":{"129":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"40":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"59":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"154":{"tf":1.0},"157":{"tf":2.23606797749979}}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"3":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":4,"docs":{"40":{"tf":1.0},"70":{"tf":1.4142135623730951},"87":{"tf":1.0},"88":{"tf":1.0}}}}}}}}},"c":{"c":{"df":0,"docs":{},"e":{"df":1,"docs":{"65":{"tf":1.0}},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"113":{"tf":1.0},"125":{"tf":1.0}},"f":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"200":{"tf":1.0},"76":{"tf":1.0}}}}}}}}}}},"df":0,"docs":{},"h":{"df":26,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"116":{"tf":1.0},"121":{"tf":1.0},"128":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"155":{"tf":1.4142135623730951},"159":{"tf":1.0},"19":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"202":{"tf":1.0},"221":{"tf":1.0},"223":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"35":{"tf":1.0},"36":{"tf":1.0},"4":{"tf":1.0},"53":{"tf":1.0},"83":{"tf":1.0},"94":{"tf":1.0},"98":{"tf":1.0}}}},"d":{"df":0,"docs":{},"o":{"df":12,"docs":{"194":{"tf":1.4142135623730951},"195":{"tf":1.4142135623730951},"199":{"tf":3.605551275463989},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"49":{"tf":1.0},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"69":{"tf":1.4142135623730951},"70":{"tf":2.23606797749979},"73":{"tf":1.0},"76":{"tf":1.0}}}},"df":2,"docs":{"199":{"tf":1.0},"65":{"tf":1.0}},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":2,"docs":{"116":{"tf":1.0},"157":{"tf":1.0}}}},"df":0,"docs":{},"x":{"df":1,"docs":{"105":{"tf":1.0}}}}}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"150":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"19":{"tf":1.4142135623730951},"191":{"tf":1.0}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"280":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":1,"docs":{"139":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":35,"docs":{"131":{"tf":1.0},"134":{"tf":2.449489742783178},"135":{"tf":1.0},"136":{"tf":1.4142135623730951},"137":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"142":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.0},"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.0},"155":{"tf":1.0},"156":{"tf":1.0},"157":{"tf":1.0},"158":{"tf":1.0},"159":{"tf":1.0},"160":{"tf":1.0},"260":{"tf":1.0},"263":{"tf":1.0},"273":{"tf":1.0},"4":{"tf":2.23606797749979},"56":{"tf":1.4142135623730951},"65":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":62,"docs":{"0":{"tf":1.4142135623730951},"100":{"tf":1.0},"101":{"tf":1.0},"111":{"tf":1.0},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"121":{"tf":1.4142135623730951},"122":{"tf":1.0},"128":{"tf":1.0},"13":{"tf":1.0},"131":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.0},"149":{"tf":1.4142135623730951},"15":{"tf":3.3166247903554},"151":{"tf":1.7320508075688772},"156":{"tf":1.0},"165":{"tf":1.7320508075688772},"166":{"tf":1.7320508075688772},"173":{"tf":1.7320508075688772},"174":{"tf":1.0},"176":{"tf":1.4142135623730951},"181":{"tf":1.7320508075688772},"187":{"tf":1.7320508075688772},"188":{"tf":1.0},"19":{"tf":1.7320508075688772},"20":{"tf":1.0},"212":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"25":{"tf":2.0},"279":{"tf":2.0},"28":{"tf":1.0},"280":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.0},"283":{"tf":1.0},"29":{"tf":1.0},"35":{"tf":1.4142135623730951},"37":{"tf":1.4142135623730951},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"42":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"56":{"tf":1.4142135623730951},"57":{"tf":2.23606797749979},"59":{"tf":1.0},"60":{"tf":1.0},"61":{"tf":1.4142135623730951},"70":{"tf":1.0},"8":{"tf":2.0},"80":{"tf":1.7320508075688772},"82":{"tf":1.4142135623730951},"83":{"tf":1.0},"89":{"tf":1.4142135623730951},"91":{"tf":1.4142135623730951},"94":{"tf":1.0},"96":{"tf":1.0},"97":{"tf":1.4142135623730951},"98":{"tf":1.4142135623730951}}}}}}},"r":{"df":0,"docs":{},"e":{"df":11,"docs":{"111":{"tf":1.0},"131":{"tf":1.0},"194":{"tf":1.0},"199":{"tf":1.0},"267":{"tf":1.0},"49":{"tf":1.0},"61":{"tf":1.0},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":1.0},"74":{"tf":1.0}}},"f":{"a":{"c":{"df":4,"docs":{"100":{"tf":1.0},"191":{"tf":1.0},"34":{"tf":1.0},"36":{"tf":1.0}},"e":{"df":0,"docs":{},"—":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"—":{"df":0,"docs":{},"i":{"df":1,"docs":{"41":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"i":{"df":1,"docs":{"221":{"tf":1.0}}}},"df":0,"docs":{}}}}},"w":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}},"df":2,"docs":{"0":{"tf":1.0},"10":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"149":{"tf":2.0}}},"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"h":{"df":8,"docs":{"195":{"tf":1.4142135623730951},"282":{"tf":1.0},"59":{"tf":1.7320508075688772},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"9":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}}}},"y":{"df":0,"docs":{},"n":{"a":{"8":{"0":{"1":{"6":{":":{"0":{"0":{"df":1,"docs":{"94":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"c":{"df":1,"docs":{"76":{"tf":1.0}},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"168":{"tf":1.0}}}}}}},"df":0,"docs":{}},"s":{"/":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"p":{"c":{"df":0,"docs":{},"i":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"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":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"{":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"}":{",":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"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":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"$":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"102":{"tf":1.0}},"e":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"102":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"3":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"l":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"b":{"0":{"4":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"3":{"0":{"0":{"0":{"0":{".":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"270":{"tf":1.4142135623730951},"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"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":{"1":{"d":{"0":{"0":{"0":{"0":{".":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"x":{"/":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"/":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"270":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"v":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"109":{"tf":1.0},"125":{"tf":1.4142135623730951},"270":{"tf":1.7320508075688772},"277":{"tf":1.7320508075688772}}}}}}},"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":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"s":{"/":{"<":{"df":0,"docs":{},"i":{"d":{">":{"/":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"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":{},"e":{"df":0,"docs":{},"m":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":1,"docs":{"70":{"tf":1.0}}}}},"d":{"df":2,"docs":{"128":{"tf":1.0},"24":{"tf":1.0}}},"df":72,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"100":{"tf":1.7320508075688772},"101":{"tf":1.0},"103":{"tf":1.0},"105":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.4142135623730951},"118":{"tf":1.0},"126":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.4142135623730951},"134":{"tf":1.0},"138":{"tf":1.0},"144":{"tf":1.0},"153":{"tf":1.4142135623730951},"156":{"tf":1.0},"190":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"208":{"tf":1.7320508075688772},"212":{"tf":1.0},"213":{"tf":1.0},"214":{"tf":1.0},"215":{"tf":1.0},"221":{"tf":1.4142135623730951},"230":{"tf":1.0},"232":{"tf":1.0},"236":{"tf":2.23606797749979},"238":{"tf":1.4142135623730951},"240":{"tf":1.0},"243":{"tf":1.0},"251":{"tf":1.0},"264":{"tf":1.0},"267":{"tf":1.0},"269":{"tf":1.0},"27":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.4142135623730951},"277":{"tf":1.4142135623730951},"278":{"tf":2.23606797749979},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":2.6457513110645907},"281":{"tf":1.4142135623730951},"282":{"tf":2.0},"283":{"tf":1.7320508075688772},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"36":{"tf":1.7320508075688772},"4":{"tf":1.7320508075688772},"42":{"tf":1.0},"43":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"48":{"tf":1.0},"49":{"tf":1.7320508075688772},"50":{"tf":1.0},"51":{"tf":2.0},"52":{"tf":1.0},"56":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"83":{"tf":1.0},"84":{"tf":2.0},"89":{"tf":1.4142135623730951},"92":{"tf":2.23606797749979},"93":{"tf":1.0},"96":{"tf":1.4142135623730951}}}}}}}},"t":{"1":{"4":{".":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"x":{"df":1,"docs":{"93":{"tf":1.0}}}}}},"df":1,"docs":{"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"6":{"0":{"0":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":1,"docs":{"201":{"tf":1.0}},"l":{"df":4,"docs":{"105":{"tf":1.0},"156":{"tf":1.4142135623730951},"20":{"tf":1.0},"7":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":1,"docs":{"149":{"tf":1.0}}},"k":{"df":0,"docs":{},"e":{"df":7,"docs":{"156":{"tf":1.0},"159":{"tf":1.4142135623730951},"167":{"tf":1.0},"176":{"tf":1.0},"200":{"tf":1.0},"203":{"tf":1.4142135623730951},"65":{"tf":1.0}},"n":{"df":4,"docs":{"111":{"tf":1.0},"156":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.0},"136":{"tf":1.0},"138":{"tf":2.23606797749979},"156":{"tf":1.0},"263":{"tf":1.0}}}}}},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":1,"docs":{"170":{"tf":1.0}}}}},"df":1,"docs":{"199":{"tf":1.4142135623730951}},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"/":{"d":{"df":0,"docs":{},"e":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"/":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"118":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":48,"docs":{"10":{"tf":1.7320508075688772},"118":{"tf":1.0},"123":{"tf":1.7320508075688772},"13":{"tf":1.0},"148":{"tf":1.0},"151":{"tf":1.0},"154":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"165":{"tf":1.0},"166":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"181":{"tf":1.0},"187":{"tf":1.0},"19":{"tf":1.7320508075688772},"191":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":2.8284271247461903},"259":{"tf":1.0},"26":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":2.0},"280":{"tf":1.0},"281":{"tf":2.0},"282":{"tf":1.7320508075688772},"29":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.7320508075688772},"39":{"tf":1.0},"55":{"tf":1.0},"56":{"tf":1.0},"57":{"tf":1.0},"59":{"tf":2.449489742783178},"61":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":1.4142135623730951},"66":{"tf":1.0},"67":{"tf":1.0},"70":{"tf":1.0},"80":{"tf":1.4142135623730951},"83":{"tf":1.0},"85":{"tf":1.0},"9":{"tf":2.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.0},"93":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"k":{"b":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"168":{"tf":1.0},"196":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"120":{"tf":1.0},"2":{"tf":1.0},"212":{"tf":1.0}}}}},"c":{"b":{")":{"df":0,"docs":{},"—":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"13":{"tf":1.0}}}}}}}},"df":5,"docs":{"1":{"tf":1.0},"101":{"tf":1.0},"19":{"tf":1.7320508075688772},"21":{"tf":1.0},"240":{"tf":1.4142135623730951}}},"df":0,"docs":{},"p":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"147":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":2,"docs":{"0":{"tf":1.0},"202":{"tf":1.0}}}},"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"c":{"df":4,"docs":{"138":{"tf":1.0},"212":{"tf":1.0},"3":{"tf":1.0},"40":{"tf":1.0}}},"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":1,"docs":{"100":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":42,"docs":{"0":{"tf":1.0},"100":{"tf":1.0},"101":{"tf":1.0},"102":{"tf":1.0},"103":{"tf":1.0},"104":{"tf":1.0},"105":{"tf":1.0},"106":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"109":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"114":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"119":{"tf":1.0},"120":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0},"2":{"tf":1.0},"20":{"tf":1.0},"209":{"tf":1.4142135623730951},"225":{"tf":1.0},"96":{"tf":2.0},"97":{"tf":1.0},"98":{"tf":1.0},"99":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"df":1,"docs":{"166":{"tf":1.4142135623730951}}},"g":{"df":0,"docs":{},"r":{"a":{"2":{"3":{"4":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"q":{"_":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"106":{"tf":1.0},"107":{"tf":1.0}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":2,"docs":{"105":{"tf":1.4142135623730951},"107":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"_":{"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"1":{"_":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"_":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"107":{"tf":1.4142135623730951}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":13,"docs":{"16":{"tf":1.0},"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"271":{"tf":1.0},"58":{"tf":1.0},"89":{"tf":2.0},"90":{"tf":2.6457513110645907},"91":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.7320508075688772},"94":{"tf":1.0},"95":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"100":{"tf":1.0},"160":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"r":{"df":0,"docs":{},"m":{"df":6,"docs":{"153":{"tf":1.0},"176":{"tf":1.0},"202":{"tf":1.0},"204":{"tf":1.4142135623730951},"42":{"tf":1.0},"57":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":5,"docs":{"109":{"tf":1.0},"195":{"tf":1.4142135623730951},"20":{"tf":1.0},"27":{"tf":1.4142135623730951},"88":{"tf":1.4142135623730951}},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.4142135623730951}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":25,"docs":{"10":{"tf":1.0},"107":{"tf":1.0},"111":{"tf":1.4142135623730951},"115":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"124":{"tf":1.4142135623730951},"125":{"tf":1.4142135623730951},"126":{"tf":1.7320508075688772},"132":{"tf":1.4142135623730951},"133":{"tf":2.23606797749979},"15":{"tf":1.0},"16":{"tf":1.0},"166":{"tf":1.0},"198":{"tf":1.0},"207":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"33":{"tf":1.0},"6":{"tf":1.0},"7":{"tf":1.4142135623730951},"70":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0},"94":{"tf":1.0}}}},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"167":{"tf":1.4142135623730951},"168":{"tf":1.0},"176":{"tf":1.0}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"v":{"df":1,"docs":{"202":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"'":{"df":1,"docs":{"149":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":2,"docs":{"151":{"tf":1.0},"89":{"tf":1.0}}}}}},"m":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":2,"docs":{"54":{"tf":1.0},"65":{"tf":1.0}}},"k":{"df":1,"docs":{"282":{"tf":1.0}},"p":{"a":{"d":{"df":4,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"r":{"d":{"df":3,"docs":{"105":{"tf":1.0},"111":{"tf":1.4142135623730951},"198":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":5,"docs":{"130":{"tf":1.0},"26":{"tf":1.0},"272":{"tf":1.0},"282":{"tf":1.4142135623730951},"57":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"138":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":4,"docs":{"111":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.7320508075688772},"158":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":21,"docs":{"0":{"tf":1.0},"101":{"tf":1.4142135623730951},"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.7320508075688772},"113":{"tf":1.0},"114":{"tf":1.7320508075688772},"115":{"tf":1.4142135623730951},"116":{"tf":1.0},"120":{"tf":1.0},"174":{"tf":1.0},"191":{"tf":1.0},"26":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"268":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":2.0},"273":{"tf":1.4142135623730951},"277":{"tf":1.0},"34":{"tf":1.0}}}}}}},"u":{"df":4,"docs":{"138":{"tf":1.0},"146":{"tf":1.0},"156":{"tf":1.0},"280":{"tf":1.0}},"m":{"b":{"df":1,"docs":{"111":{"tf":1.0}}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"157":{"tf":2.449489742783178},"158":{"tf":1.0}}}},"i":{"df":4,"docs":{"20":{"tf":1.4142135623730951},"208":{"tf":1.0},"209":{"tf":1.4142135623730951},"93":{"tf":1.0}}},"m":{"df":0,"docs":{},"e":{"df":23,"docs":{"111":{"tf":1.0},"122":{"tf":1.0},"134":{"tf":1.7320508075688772},"138":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"159":{"tf":1.0},"161":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.4142135623730951},"183":{"tf":1.4142135623730951},"189":{"tf":1.4142135623730951},"196":{"tf":1.4142135623730951},"199":{"tf":1.0},"200":{"tf":1.0},"202":{"tf":1.0},"272":{"tf":1.0},"28":{"tf":1.0},"281":{"tf":1.0},"56":{"tf":1.4142135623730951},"62":{"tf":1.0},"65":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":2,"docs":{"272":{"tf":1.0},"65":{"tf":1.0}}}}},"r":{"df":1,"docs":{"267":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"y":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"44":{"tf":1.4142135623730951}}}}}}}},"df":0,"docs":{}}},"p":{"df":5,"docs":{"111":{"tf":1.4142135623730951},"126":{"tf":1.0},"195":{"tf":1.4142135623730951},"69":{"tf":1.0},"88":{"tf":1.0}}}},"l":{"df":3,"docs":{"147":{"tf":1.0},"154":{"tf":1.0},"241":{"tf":1.4142135623730951}}},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":3,"docs":{"113":{"tf":1.0},"134":{"tf":1.0},"150":{"tf":1.0}}}}}},"o":{"df":0,"docs":{},"l":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":19,"docs":{"10":{"tf":1.0},"103":{"tf":1.4142135623730951},"118":{"tf":1.0},"119":{"tf":1.0},"144":{"tf":1.4142135623730951},"149":{"tf":1.4142135623730951},"151":{"tf":2.23606797749979},"152":{"tf":1.0},"156":{"tf":1.0},"160":{"tf":1.4142135623730951},"166":{"tf":1.0},"20":{"tf":1.0},"25":{"tf":1.4142135623730951},"271":{"tf":1.0},"279":{"tf":1.0},"28":{"tf":2.0},"283":{"tf":1.4142135623730951},"54":{"tf":1.0},"96":{"tf":1.0}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"p":{"df":6,"docs":{"160":{"tf":1.0},"267":{"tf":1.0},"272":{"tf":1.0},"50":{"tf":1.0},"85":{"tf":1.0},"98":{"tf":1.0}},"i":{"c":{"df":2,"docs":{"127":{"tf":1.4142135623730951},"265":{"tf":1.0}},"s":{"/":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}},"df":0,"docs":{}},"u":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"134":{"tf":1.0},"199":{"tf":1.0},"265":{"tf":1.0},"273":{"tf":1.4142135623730951}},"p":{"a":{"d":{"df":2,"docs":{"174":{"tf":1.0},"94":{"tf":2.23606797749979}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"w":{"df":1,"docs":{"66":{"tf":1.7320508075688772}}}},"p":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"a":{"c":{"df":0,"docs":{},"k":{"df":2,"docs":{"237":{"tf":1.0},"56":{"tf":1.0}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"1":{"tf":1.0},"13":{"tf":1.0},"84":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":2,"docs":{"1":{"tf":1.0},"282":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"147":{"tf":1.0},"221":{"tf":1.0}}},"df":0,"docs":{}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"214":{"tf":1.0},"269":{"tf":1.0},"273":{"tf":1.0},"282":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":1,"docs":{"1":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"t":{"df":7,"docs":{"134":{"tf":1.0},"138":{"tf":1.0},"146":{"tf":1.0},"147":{"tf":1.4142135623730951},"154":{"tf":1.0},"156":{"tf":1.0},"2":{"tf":1.0}}}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":2,"docs":{"3":{"tf":1.0},"4":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"111":{"tf":1.0},"147":{"tf":1.4142135623730951},"241":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":20,"docs":{"105":{"tf":1.7320508075688772},"106":{"tf":1.0},"107":{"tf":2.0},"108":{"tf":2.449489742783178},"112":{"tf":1.0},"115":{"tf":1.0},"121":{"tf":1.0},"130":{"tf":1.0},"206":{"tf":1.4142135623730951},"265":{"tf":2.6457513110645907},"267":{"tf":1.7320508075688772},"269":{"tf":1.4142135623730951},"270":{"tf":1.0},"271":{"tf":3.3166247903554},"272":{"tf":1.4142135623730951},"273":{"tf":2.0},"274":{"tf":2.6457513110645907},"277":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":2.0}},"—":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"277":{"tf":1.0}}}},"df":0,"docs":{}}}},"i":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"160":{"tf":1.4142135623730951}}},"l":{"df":1,"docs":{"111":{"tf":1.0}}}},"c":{"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":2,"docs":{"112":{"tf":1.0},"65":{"tf":1.0}}}}},"df":5,"docs":{"111":{"tf":1.0},"195":{"tf":1.4142135623730951},"55":{"tf":1.0},"60":{"tf":1.0},"94":{"tf":1.7320508075688772}},"g":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"160":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"u":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"112":{"tf":1.0}},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"71":{"tf":1.4142135623730951},"94":{"tf":1.4142135623730951}}}}}}}}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"e":{"df":4,"docs":{"123":{"tf":1.4142135623730951},"142":{"tf":1.0},"44":{"tf":1.0},"76":{"tf":1.4142135623730951}}},"s":{"df":0,"docs":{},"t":{"df":19,"docs":{"0":{"tf":1.4142135623730951},"101":{"tf":1.0},"13":{"tf":1.0},"138":{"tf":1.0},"157":{"tf":1.0},"240":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"278":{"tf":1.0},"279":{"tf":1.4142135623730951},"283":{"tf":1.0},"3":{"tf":2.0},"34":{"tf":1.0},"36":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"5":{"tf":1.0},"70":{"tf":2.0},"84":{"tf":1.7320508075688772},"96":{"tf":1.0}},"f":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":1,"docs":{"156":{"tf":1.0}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":1,"docs":{"88":{"tf":1.0}}}}}}}}}}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}},"t":{"df":0,"docs":{},"i":{"df":2,"docs":{"126":{"tf":1.0},"27":{"tf":1.0}}},"y":{"a":{"c":{"df":0,"docs":{},"m":{"0":{"df":1,"docs":{"105":{"tf":1.0}}},"1":{"df":2,"docs":{"105":{"tf":1.7320508075688772},"109":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":2,"docs":{"111":{"tf":1.4142135623730951},"273":{"tf":1.0}}}},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"60":{"tf":1.0}}}}}}},"w":{"df":0,"docs":{},"o":{"df":18,"docs":{"105":{"tf":1.4142135623730951},"111":{"tf":1.0},"115":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.0},"143":{"tf":1.0},"144":{"tf":1.0},"149":{"tf":1.0},"157":{"tf":1.4142135623730951},"160":{"tf":1.0},"191":{"tf":1.0},"195":{"tf":1.0},"267":{"tf":1.0},"42":{"tf":1.0},"46":{"tf":1.0},"50":{"tf":1.0},"86":{"tf":1.0}}}},"x":{"0":{"df":1,"docs":{"272":{"tf":1.0}}},"df":1,"docs":{"272":{"tf":1.0}},"i":{"d":{"df":1,"docs":{"273":{"tf":1.0}}},"df":0,"docs":{}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":11,"docs":{"103":{"tf":1.0},"111":{"tf":1.7320508075688772},"157":{"tf":1.0},"195":{"tf":2.0},"202":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"42":{"tf":1.0},"61":{"tf":1.0},"76":{"tf":1.0},"85":{"tf":1.0}},"s":{".":{"df":0,"docs":{},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"85":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"i":{"c":{"df":2,"docs":{"282":{"tf":1.0},"72":{"tf":1.0}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"e":{"df":2,"docs":{"209":{"tf":1.0},"94":{"tf":1.0}}},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"109":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":3,"docs":{"105":{"tf":1.0},"107":{"tf":1.0},"109":{"tf":1.0}}}}}},"df":0,"docs":{}},"1":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"2":{"df":1,"docs":{"105":{"tf":2.0}}},"3":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"4":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"5":{"df":1,"docs":{"105":{"tf":2.0}}},"6":{"df":1,"docs":{"105":{"tf":1.0}}},"7":{"df":1,"docs":{"105":{"tf":2.0}}},"8":{"df":1,"docs":{"105":{"tf":1.0}}},"a":{"df":3,"docs":{"105":{"tf":1.4142135623730951},"122":{"tf":1.4142135623730951},"126":{"tf":2.449489742783178}}},"b":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"c":{"df":1,"docs":{"105":{"tf":1.7320508075688772}}},"d":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"df":13,"docs":{"10":{"tf":1.4142135623730951},"101":{"tf":1.0},"104":{"tf":2.0},"105":{"tf":3.872983346207417},"106":{"tf":1.4142135623730951},"107":{"tf":1.4142135623730951},"108":{"tf":1.4142135623730951},"109":{"tf":1.0},"112":{"tf":1.0},"126":{"tf":1.4142135623730951},"127":{"tf":1.0},"242":{"tf":1.4142135623730951},"99":{"tf":1.0}},"f":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"g":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"h":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}},"i":{"df":5,"docs":{"105":{"tf":1.4142135623730951},"106":{"tf":2.0},"107":{"tf":1.7320508075688772},"108":{"tf":1.4142135623730951},"109":{"tf":1.0}}},"j":{"df":1,"docs":{"105":{"tf":1.4142135623730951}}}}}},"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"267":{"tf":1.0}}}}},"u":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":5,"docs":{"118":{"tf":1.0},"121":{"tf":1.0},"122":{"tf":1.0},"279":{"tf":1.4142135623730951},"53":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"a":{"d":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":7,"docs":{"265":{"tf":1.0},"267":{"tf":1.0},"268":{"tf":1.0},"269":{"tf":2.0},"271":{"tf":1.4142135623730951},"67":{"tf":1.0},"94":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":5,"docs":{"123":{"tf":1.0},"243":{"tf":1.4142135623730951},"45":{"tf":1.4142135623730951},"46":{"tf":1.4142135623730951},"49":{"tf":1.0}}}}},"f":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.0}}}},"i":{".":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":1,"docs":{"196":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":3,"docs":{"196":{"tf":1.4142135623730951},"244":{"tf":1.4142135623730951},"57":{"tf":1.4142135623730951}}},"n":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"270":{"tf":1.0}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"n":{"df":1,"docs":{"62":{"tf":1.0}}},"r":{"df":1,"docs":{"159":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"87":{"tf":1.0}}}}},"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}}},"r":{"df":15,"docs":{"111":{"tf":1.7320508075688772},"129":{"tf":1.0},"130":{"tf":1.0},"158":{"tf":1.0},"168":{"tf":1.7320508075688772},"176":{"tf":1.0},"188":{"tf":1.0},"20":{"tf":1.0},"215":{"tf":1.0},"27":{"tf":1.0},"3":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.0},"60":{"tf":1.0},"80":{"tf":1.0}},"g":{"df":0,"docs":{},"o":{"df":1,"docs":{"132":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"159":{"tf":1.0},"3":{"tf":1.0},"45":{"tf":1.0},"94":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"57":{"tf":1.7320508075688772}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.4142135623730951}}}},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"u":{"df":3,"docs":{"2":{"tf":1.0},"237":{"tf":1.0},"85":{"tf":1.0}}}},"t":{"df":12,"docs":{"105":{"tf":3.0},"106":{"tf":1.0},"107":{"tf":1.0},"126":{"tf":1.0},"215":{"tf":1.0},"222":{"tf":1.0},"228":{"tf":1.0},"237":{"tf":1.0},"272":{"tf":1.4142135623730951},"7":{"tf":1.0},"94":{"tf":1.0},"97":{"tf":1.0}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"s":{"df":1,"docs":{"242":{"tf":1.0}}}}}},"x":{":":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"130":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"k":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":1,"docs":{"94":{"tf":1.0}}}}}}},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":2,"docs":{"139":{"tf":1.0},"20":{"tf":1.0}}}}},"o":{"a":{"d":{"df":1,"docs":{"113":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"56":{"tf":1.0}}}}}},"df":0,"docs":{}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"20":{"tf":1.0}},"l":{"df":0,"docs":{},"i":{"df":1,"docs":{"282":{"tf":1.0}}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"279":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"271":{"tf":1.0}}}}}},"df":0,"docs":{}}},"s":{"a":{"df":0,"docs":{},"f":{"df":1,"docs":{"201":{"tf":1.0}}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":2,"docs":{"144":{"tf":1.0},"48":{"tf":1.0}}}}},"df":0,"docs":{},"t":{"df":2,"docs":{"103":{"tf":1.4142135623730951},"119":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"159":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"123":{"tf":1.0}}}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":2,"docs":{"84":{"tf":1.0},"96":{"tf":1.0}}}}}}},"z":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":18,"docs":{"10":{"tf":1.4142135623730951},"107":{"tf":1.0},"160":{"tf":2.0},"166":{"tf":1.4142135623730951},"182":{"tf":1.0},"20":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"272":{"tf":1.7320508075688772},"273":{"tf":1.4142135623730951},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":2.0},"56":{"tf":1.0},"59":{"tf":1.0},"70":{"tf":1.0},"89":{"tf":1.0},"9":{"tf":1.0},"91":{"tf":3.0}}}},"df":0,"docs":{}},"df":26,"docs":{"1":{"tf":1.0},"103":{"tf":1.4142135623730951},"113":{"tf":1.0},"118":{"tf":1.0},"13":{"tf":1.0},"132":{"tf":1.0},"148":{"tf":1.0},"160":{"tf":1.0},"167":{"tf":1.0},"176":{"tf":1.0},"199":{"tf":1.0},"207":{"tf":1.0},"265":{"tf":1.0},"267":{"tf":1.4142135623730951},"277":{"tf":1.0},"278":{"tf":1.0},"280":{"tf":1.0},"283":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"65":{"tf":1.0},"68":{"tf":1.4142135623730951},"69":{"tf":1.0},"70":{"tf":2.0},"73":{"tf":1.0},"93":{"tf":1.0}},"l":{"df":0,"docs":{},"o":{"a":{"d":{"df":1,"docs":{"133":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":9,"docs":{"133":{"tf":1.0},"160":{"tf":2.23606797749979},"44":{"tf":1.4142135623730951},"55":{"tf":1.0},"56":{"tf":1.4142135623730951},"60":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0},"91":{"tf":1.0}},"—":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"56":{"tf":1.0}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"r":{"df":0,"docs":{},"l":{"df":2,"docs":{"55":{"tf":1.0},"60":{"tf":1.0}}}},"s":{"_":{"2":{"5":{"3":{"2":{"4":{".":{"df":0,"docs":{},"v":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"x":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"84":{"tf":1.0}}}},"df":0,"docs":{},"g":{"df":11,"docs":{"103":{"tf":1.4142135623730951},"111":{"tf":1.0},"116":{"tf":1.0},"138":{"tf":1.0},"150":{"tf":1.4142135623730951},"156":{"tf":1.0},"157":{"tf":1.0},"280":{"tf":1.0},"43":{"tf":1.4142135623730951},"54":{"tf":1.0},"89":{"tf":1.7320508075688772}}}},"b":{"df":19,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"105":{"tf":2.0},"109":{"tf":1.0},"111":{"tf":1.4142135623730951},"166":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"194":{"tf":1.4142135623730951},"279":{"tf":1.0},"282":{"tf":1.0},"35":{"tf":1.0},"59":{"tf":1.0},"63":{"tf":1.4142135623730951},"64":{"tf":1.4142135623730951},"65":{"tf":2.8284271247461903},"66":{"tf":1.7320508075688772},"67":{"tf":1.0}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"p":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"p":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}},"v":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"93":{"tf":1.0}}},"df":0,"docs":{}}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"g":{"3":{"_":{"c":{"d":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"h":{"c":{"1":{"df":1,"docs":{"267":{"tf":1.0}}},"2":{"df":1,"docs":{"267":{"tf":1.0}}},"3":{"df":1,"docs":{"267":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":105,"docs":{"0":{"tf":1.0},"1":{"tf":1.0},"10":{"tf":1.0},"100":{"tf":1.0},"103":{"tf":2.23606797749979},"107":{"tf":1.0},"109":{"tf":1.0},"111":{"tf":2.8284271247461903},"113":{"tf":1.4142135623730951},"114":{"tf":1.4142135623730951},"115":{"tf":1.4142135623730951},"116":{"tf":1.4142135623730951},"118":{"tf":1.7320508075688772},"122":{"tf":1.4142135623730951},"123":{"tf":1.7320508075688772},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":1.7320508075688772},"132":{"tf":1.0},"134":{"tf":1.4142135623730951},"144":{"tf":1.0},"145":{"tf":1.4142135623730951},"147":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"152":{"tf":1.0},"153":{"tf":1.0},"154":{"tf":1.4142135623730951},"155":{"tf":1.0},"156":{"tf":2.0},"157":{"tf":1.4142135623730951},"16":{"tf":1.0},"160":{"tf":1.4142135623730951},"170":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"182":{"tf":1.0},"183":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.7320508075688772},"19":{"tf":1.4142135623730951},"190":{"tf":1.0},"191":{"tf":1.4142135623730951},"193":{"tf":1.0},"194":{"tf":1.4142135623730951},"195":{"tf":2.23606797749979},"196":{"tf":1.7320508075688772},"198":{"tf":1.4142135623730951},"200":{"tf":1.0},"201":{"tf":1.0},"202":{"tf":1.0},"203":{"tf":2.0},"204":{"tf":1.0},"21":{"tf":1.0},"213":{"tf":1.0},"23":{"tf":1.0},"237":{"tf":1.0},"262":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":2.23606797749979},"270":{"tf":1.4142135623730951},"271":{"tf":1.4142135623730951},"272":{"tf":2.6457513110645907},"273":{"tf":1.0},"277":{"tf":1.4142135623730951},"279":{"tf":1.7320508075688772},"28":{"tf":1.0},"280":{"tf":1.4142135623730951},"281":{"tf":1.4142135623730951},"282":{"tf":1.7320508075688772},"283":{"tf":1.0},"3":{"tf":1.0},"30":{"tf":1.0},"35":{"tf":1.0},"39":{"tf":1.4142135623730951},"40":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.4142135623730951},"48":{"tf":1.0},"50":{"tf":1.0},"52":{"tf":1.0},"56":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"65":{"tf":1.7320508075688772},"67":{"tf":1.4142135623730951},"69":{"tf":1.4142135623730951},"70":{"tf":2.6457513110645907},"72":{"tf":1.0},"73":{"tf":1.4142135623730951},"74":{"tf":1.4142135623730951},"76":{"tf":1.0},"80":{"tf":1.4142135623730951},"84":{"tf":1.0},"87":{"tf":1.0},"88":{"tf":1.0},"89":{"tf":1.7320508075688772},"9":{"tf":1.0},"90":{"tf":1.4142135623730951},"92":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951},"94":{"tf":2.0},"96":{"tf":1.7320508075688772},"97":{"tf":1.0},"98":{"tf":1.7320508075688772}},"e":{"/":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":1,"docs":{"74":{"tf":1.0}}}}}}},"df":0,"docs":{},"r":{"'":{"df":3,"docs":{"281":{"tf":1.0},"69":{"tf":1.0},"88":{"tf":1.0}}},",":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"w":{"d":{"=":{"df":0,"docs":{},"t":{"c":{"df":0,"docs":{},"p":{":":{":":{"2":{"2":{"2":{"2":{"df":1,"docs":{"126":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"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":{},"p":{"_":{"a":{"d":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"_":{"df":0,"docs":{},"o":{"df":0,"docs":{},"f":{"_":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"69":{"tf":1.4142135623730951},"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":37,"docs":{"109":{"tf":1.0},"111":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.4142135623730951},"130":{"tf":1.0},"133":{"tf":1.0},"15":{"tf":1.0},"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"195":{"tf":1.4142135623730951},"199":{"tf":1.4142135623730951},"217":{"tf":1.0},"219":{"tf":1.0},"220":{"tf":1.0},"240":{"tf":1.0},"244":{"tf":1.0},"25":{"tf":1.0},"270":{"tf":1.0},"282":{"tf":2.449489742783178},"35":{"tf":1.7320508075688772},"47":{"tf":1.0},"49":{"tf":1.4142135623730951},"50":{"tf":1.4142135623730951},"53":{"tf":1.0},"57":{"tf":2.23606797749979},"65":{"tf":1.4142135623730951},"67":{"tf":1.0},"69":{"tf":2.23606797749979},"70":{"tf":2.0},"71":{"tf":1.0},"72":{"tf":2.8284271247461903},"84":{"tf":1.0},"88":{"tf":1.0},"96":{"tf":1.4142135623730951},"98":{"tf":1.0}},"m":{"df":0,"docs":{},"o":{"d":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}},"df":0,"docs":{}}},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"59":{"tf":1.0}}}},"df":0,"docs":{}},"’":{"df":1,"docs":{"69":{"tf":1.7320508075688772}}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"199":{"tf":1.7320508075688772}}}}}}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"u":{"a":{"df":0,"docs":{},"l":{"df":4,"docs":{"111":{"tf":1.0},"113":{"tf":1.4142135623730951},"157":{"tf":1.0},"202":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":3,"docs":{"0":{"tf":1.0},"1":{"tf":1.4142135623730951},"103":{"tf":1.0}}}}}},"v":{".":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{".":{"df":0,"docs":{},"x":{"df":0,"docs":{},"z":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"1":{".":{"0":{"df":2,"docs":{"166":{"tf":1.0},"182":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"2":{"0":{"2":{"3":{".":{"0":{"2":{"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":{}},"a":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"d":{"df":2,"docs":{"144":{"tf":1.0},"43":{"tf":1.0}}},"df":0,"docs":{}},"u":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"96":{"tf":1.0}}}},"df":0,"docs":{}},"df":3,"docs":{"129":{"tf":1.0},"131":{"tf":1.0},"195":{"tf":1.4142135623730951}}}},"r":{"/":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"b":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"/":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"/":{"b":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"/":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"94":{"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":{},"m":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"130":{"tf":1.0}}}}}}},"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":4,"docs":{"70":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.7320508075688772},"79":{"tf":1.0}},"e":{"_":{"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"77":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":8,"docs":{"14":{"tf":1.0},"15":{"tf":3.0},"156":{"tf":1.7320508075688772},"20":{"tf":1.4142135623730951},"25":{"tf":1.0},"57":{"tf":1.0},"7":{"tf":1.0},"98":{"tf":1.0}},"s":{"df":0,"docs":{},"—":{"df":0,"docs":{},"s":{"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":1,"docs":{"7":{"tf":1.0}}}}}}}}}}}}},"t":{"df":1,"docs":{"202":{"tf":1.0}}}},"df":1,"docs":{"42":{"tf":1.0}},"o":{"df":0,"docs":{},"u":{"df":5,"docs":{"1":{"tf":1.0},"190":{"tf":1.0},"3":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.0}}}}}},"t":{"df":1,"docs":{"156":{"tf":1.0}}}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"0":{"df":1,"docs":{"273":{"tf":1.4142135623730951}}},"df":1,"docs":{"273":{"tf":1.4142135623730951}}}}},"df":0,"docs":{}},"df":5,"docs":{"131":{"tf":1.0},"15":{"tf":1.0},"20":{"tf":3.0},"80":{"tf":1.0},"97":{"tf":1.0}},"e":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{".":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"/":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"/":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"f":{"_":{"2":{"3":{".":{"0":{"9":{"df":1,"docs":{"178":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":1,"docs":{"170":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"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":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"'":{"df":1,"docs":{"57":{"tf":1.0}}},"_":{"df":0,"docs":{},"i":{"d":{"=":{"$":{"(":{"c":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{}}},"df":6,"docs":{"29":{"tf":1.0},"3":{"tf":1.0},"35":{"tf":1.0},"44":{"tf":1.0},"50":{"tf":2.0},"57":{"tf":2.0}}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":3,"docs":{"134":{"tf":1.0},"153":{"tf":1.0},"49":{"tf":1.4142135623730951}},"i":{"df":7,"docs":{"131":{"tf":1.0},"134":{"tf":1.4142135623730951},"139":{"tf":1.0},"141":{"tf":1.0},"153":{"tf":1.0},"207":{"tf":1.0},"65":{"tf":1.0}}}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"31":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"=":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"271":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":1,"docs":{"277":{"tf":1.0}}}}}}},"df":18,"docs":{"131":{"tf":1.0},"134":{"tf":1.0},"138":{"tf":1.0},"139":{"tf":1.0},"141":{"tf":1.7320508075688772},"147":{"tf":1.0},"182":{"tf":1.0},"194":{"tf":1.0},"212":{"tf":1.0},"266":{"tf":1.0},"271":{"tf":1.0},"280":{"tf":1.0},"282":{"tf":1.4142135623730951},"35":{"tf":1.0},"43":{"tf":1.0},"67":{"tf":1.4142135623730951},"89":{"tf":1.0},"91":{"tf":1.4142135623730951}}}}}},"t":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"0":{"tf":1.0}}},"df":0,"docs":{}}}}},"f":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"65":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"/":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"268":{"tf":1.0}}}}}}}},"df":17,"docs":{"101":{"tf":1.4142135623730951},"102":{"tf":2.23606797749979},"103":{"tf":2.23606797749979},"109":{"tf":2.0},"112":{"tf":2.6457513110645907},"113":{"tf":3.4641016151377544},"114":{"tf":2.0},"115":{"tf":1.0},"118":{"tf":2.8284271247461903},"125":{"tf":1.0},"126":{"tf":1.0},"245":{"tf":1.4142135623730951},"267":{"tf":1.0},"270":{"tf":3.4641016151377544},"277":{"tf":2.8284271247461903},"40":{"tf":1.0},"99":{"tf":1.0}}}}},"h":{"d":{"df":0,"docs":{},"x":{"df":1,"docs":{"194":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"i":{"a":{"df":6,"docs":{"175":{"tf":1.0},"20":{"tf":1.0},"28":{"tf":1.0},"282":{"tf":1.0},"30":{"tf":1.4142135623730951},"97":{"tf":1.0}}},"d":{"df":2,"docs":{"100":{"tf":1.4142135623730951},"93":{"tf":1.0}},"e":{"df":0,"docs":{},"o":{"df":2,"docs":{"223":{"tf":1.0},"67":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":1,"docs":{"3":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"100":{"tf":1.0},"191":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"t":{",":{"a":{"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"=":{"df":0,"docs":{},"k":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{",":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"d":{"df":0,"docs":{},"t":{"b":{"=":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{".":{"d":{"df":0,"docs":{},"t":{"b":{"df":1,"docs":{"108":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":4,"docs":{"109":{"tf":1.0},"115":{"tf":1.0},"126":{"tf":1.0},"130":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"271":{"tf":1.0},"277":{"tf":1.0}}},"df":0,"docs":{}}}},".":{"d":{"df":0,"docs":{},"t":{"b":{"df":2,"docs":{"126":{"tf":1.0},"271":{"tf":1.0}}},"df":1,"docs":{"271":{"tf":1.4142135623730951}}}},"df":0,"docs":{}},"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.4142135623730951}}}}},"p":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"e":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{",":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"=":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"0":{"df":1,"docs":{"130":{"tf":1.0}}},"1":{"df":1,"docs":{"130":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}},"df":1,"docs":{"127":{"tf":1.0}},"i":{"df":0,"docs":{},"o":{"df":2,"docs":{"130":{"tf":2.0},"131":{"tf":1.0}}}},"u":{"a":{"df":0,"docs":{},"l":{"_":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"e":{"_":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"_":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}},"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"m":{"df":0,"docs":{},"o":{"d":{"df":0,"docs":{},"e":{"_":{"c":{"df":0,"docs":{},"h":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"200":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":46,"docs":{"0":{"tf":1.7320508075688772},"1":{"tf":2.0},"10":{"tf":1.0},"101":{"tf":1.0},"11":{"tf":1.0},"120":{"tf":2.0},"121":{"tf":2.449489742783178},"122":{"tf":2.0},"123":{"tf":2.0},"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0},"127":{"tf":1.0},"13":{"tf":2.23606797749979},"15":{"tf":2.23606797749979},"16":{"tf":1.0},"191":{"tf":1.0},"198":{"tf":2.23606797749979},"199":{"tf":1.0},"20":{"tf":1.4142135623730951},"200":{"tf":1.0},"225":{"tf":1.4142135623730951},"226":{"tf":1.0},"235":{"tf":1.0},"245":{"tf":1.0},"246":{"tf":1.0},"247":{"tf":1.0},"25":{"tf":1.7320508075688772},"271":{"tf":1.4142135623730951},"282":{"tf":1.0},"29":{"tf":1.0},"32":{"tf":1.4142135623730951},"35":{"tf":1.0},"39":{"tf":1.0},"5":{"tf":1.0},"50":{"tf":1.0},"57":{"tf":1.0},"61":{"tf":1.0},"8":{"tf":1.0},"84":{"tf":1.0},"85":{"tf":1.0},"89":{"tf":1.0},"96":{"tf":1.4142135623730951},"97":{"tf":2.6457513110645907},"98":{"tf":2.0},"99":{"tf":1.0}},"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":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"123":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}}}},"s":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"265":{"tf":1.0}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"t":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"100":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"'":{"df":1,"docs":{"128":{"tf":1.0}}},"d":{"df":2,"docs":{"11":{"tf":1.0},"25":{"tf":1.0}}},"df":56,"docs":{"1":{"tf":1.0},"10":{"tf":2.6457513110645907},"100":{"tf":2.6457513110645907},"101":{"tf":1.4142135623730951},"108":{"tf":1.0},"109":{"tf":2.449489742783178},"11":{"tf":1.4142135623730951},"114":{"tf":1.7320508075688772},"116":{"tf":1.4142135623730951},"120":{"tf":1.0},"121":{"tf":1.0},"126":{"tf":1.4142135623730951},"129":{"tf":1.4142135623730951},"13":{"tf":1.7320508075688772},"130":{"tf":1.4142135623730951},"14":{"tf":1.0},"15":{"tf":2.8284271247461903},"166":{"tf":1.0},"168":{"tf":1.4142135623730951},"174":{"tf":1.0},"176":{"tf":1.0},"191":{"tf":3.1622776601683795},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":1.0},"195":{"tf":3.605551275463989},"196":{"tf":2.449489742783178},"197":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.4142135623730951},"219":{"tf":1.0},"23":{"tf":1.0},"246":{"tf":1.4142135623730951},"267":{"tf":1.4142135623730951},"3":{"tf":1.0},"32":{"tf":1.0},"33":{"tf":1.0},"34":{"tf":1.4142135623730951},"35":{"tf":1.4142135623730951},"36":{"tf":1.4142135623730951},"50":{"tf":2.0},"51":{"tf":2.449489742783178},"52":{"tf":3.1622776601683795},"57":{"tf":1.4142135623730951},"58":{"tf":1.0},"59":{"tf":1.0},"61":{"tf":1.0},"62":{"tf":2.0},"83":{"tf":1.0},"84":{"tf":2.6457513110645907},"85":{"tf":2.8284271247461903},"86":{"tf":1.7320508075688772},"9":{"tf":1.4142135623730951},"93":{"tf":1.0},"94":{"tf":1.0}},"m":{"/":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"df":1,"docs":{"39":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"df":10,"docs":{"14":{"tf":1.0},"193":{"tf":1.0},"247":{"tf":1.4142135623730951},"25":{"tf":1.4142135623730951},"35":{"tf":1.0},"37":{"tf":1.7320508075688772},"38":{"tf":1.0},"39":{"tf":2.23606797749979},"40":{"tf":2.23606797749979},"98":{"tf":2.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.7320508075688772}}}}}},"p":{"df":0,"docs":{},"n":{"df":2,"docs":{"71":{"tf":1.0},"73":{"tf":2.23606797749979}}}},"u":{"df":0,"docs":{},"l":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":5,"docs":{"134":{"tf":1.4142135623730951},"150":{"tf":2.0},"159":{"tf":1.0},"160":{"tf":3.4641016151377544},"4":{"tf":1.0}}}}}}}},"w":{"a":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":1,"docs":{"272":{"tf":1.0}}}}}},"n":{"df":0,"docs":{},"t":{"df":4,"docs":{"282":{"tf":1.0},"55":{"tf":1.0},"67":{"tf":1.4142135623730951},"86":{"tf":1.0}}}},"r":{"df":0,"docs":{},"n":{"df":3,"docs":{"194":{"tf":1.0},"201":{"tf":1.0},"271":{"tf":1.0}}}},"t":{"c":{"df":0,"docs":{},"h":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"272":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"y":{"df":12,"docs":{"103":{"tf":1.0},"115":{"tf":1.0},"129":{"tf":1.0},"13":{"tf":1.4142135623730951},"134":{"tf":1.0},"144":{"tf":1.4142135623730951},"269":{"tf":1.0},"271":{"tf":1.0},"281":{"tf":1.0},"59":{"tf":1.0},"80":{"tf":1.0},"93":{"tf":1.0}},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":10,"docs":{"10":{"tf":1.4142135623730951},"100":{"tf":1.0},"11":{"tf":1.0},"188":{"tf":1.0},"227":{"tf":1.4142135623730951},"51":{"tf":1.0},"52":{"tf":1.7320508075688772},"87":{"tf":1.0},"88":{"tf":1.0},"92":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"10":{"tf":1.0},"100":{"tf":1.0}}}}}}},"d":{"df":0,"docs":{},"t":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}},"df":1,"docs":{"203":{"tf":1.0}},"e":{"b":{"c":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"174":{"tf":1.0}}}},"df":0,"docs":{}},"df":2,"docs":{"100":{"tf":1.0},"133":{"tf":1.7320508075688772}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":3,"docs":{"136":{"tf":1.0},"194":{"tf":1.0},"223":{"tf":1.0}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"62":{"tf":1.0}}},"df":0,"docs":{}}},"l":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"16":{"tf":1.0},"54":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":6,"docs":{"111":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"151":{"tf":1.0},"167":{"tf":1.0},"280":{"tf":1.0}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"188":{"tf":1.0},"195":{"tf":1.4142135623730951},"196":{"tf":1.0},"201":{"tf":1.0},"92":{"tf":1.0},"93":{"tf":1.0}}}}}}},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":2,"docs":{"138":{"tf":1.0},"57":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"101":{"tf":1.0},"83":{"tf":1.0}}}}}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"3":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"48":{"tf":1.0}}}}}},"l":{"df":0,"docs":{},"e":{"df":6,"docs":{"111":{"tf":1.0},"112":{"tf":1.0},"115":{"tf":1.0},"116":{"tf":1.0},"272":{"tf":1.0},"280":{"tf":1.0}}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":2,"docs":{"149":{"tf":1.0},"69":{"tf":1.0}}},"t":{"df":0,"docs":{},"h":{"df":1,"docs":{"111":{"tf":1.0}}}}},"df":3,"docs":{"111":{"tf":1.7320508075688772},"113":{"tf":1.0},"94":{"tf":1.0}},"f":{"df":0,"docs":{},"i":{"df":3,"docs":{"10":{"tf":1.0},"105":{"tf":1.0},"112":{"tf":1.0}}}},"k":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"d":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}},"n":{"1":{"1":{".":{"df":0,"docs":{},"q":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"2":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"_":{"2":{"2":{"df":0,"docs":{},"h":{"2":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"_":{"df":0,"docs":{},"x":{"6":{"4":{"df":0,"docs":{},"v":{"2":{".":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":2,"docs":{"194":{"tf":1.0},"195":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"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":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":21,"docs":{"100":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.0},"168":{"tf":1.4142135623730951},"175":{"tf":1.4142135623730951},"176":{"tf":2.0},"184":{"tf":1.7320508075688772},"188":{"tf":1.0},"189":{"tf":1.0},"191":{"tf":1.0},"192":{"tf":1.0},"193":{"tf":2.23606797749979},"194":{"tf":2.6457513110645907},"195":{"tf":4.47213595499958},"196":{"tf":2.449489742783178},"197":{"tf":2.0},"201":{"tf":1.7320508075688772},"227":{"tf":1.0},"53":{"tf":1.0},"62":{"tf":1.0},"88":{"tf":2.0}},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"88":{"tf":2.0}}}}},"s":{"1":{"1":{"_":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"_":{"c":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"_":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"6":{"4":{"_":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"195":{"tf":1.0},"197":{"tf":1.0}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}}}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":1,"docs":{"16":{"tf":1.0}},"e":{"df":2,"docs":{"282":{"tf":1.0},"65":{"tf":1.0}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"df":0,"docs":{},"h":{"df":1,"docs":{"89":{"tf":1.0}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":13,"docs":{"0":{"tf":1.4142135623730951},"1":{"tf":1.0},"113":{"tf":1.0},"191":{"tf":1.0},"272":{"tf":1.0},"274":{"tf":1.0},"282":{"tf":1.0},"3":{"tf":1.4142135623730951},"40":{"tf":1.0},"42":{"tf":1.0},"65":{"tf":1.0},"84":{"tf":1.0},"91":{"tf":1.0}}}},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":11,"docs":{"191":{"tf":1.0},"195":{"tf":2.0},"25":{"tf":1.0},"281":{"tf":1.0},"282":{"tf":1.4142135623730951},"283":{"tf":1.0},"4":{"tf":1.0},"44":{"tf":1.0},"57":{"tf":1.4142135623730951},"84":{"tf":1.0},"91":{"tf":1.0}}}}}}}},"l":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"m":{"_":{"c":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"202":{"tf":2.23606797749979}}},"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"n":{"d":{"df":4,"docs":{"168":{"tf":2.0},"176":{"tf":2.0},"184":{"tf":1.0},"189":{"tf":1.4142135623730951}}},"df":0,"docs":{}}}}}},"df":27,"docs":{"0":{"tf":1.0},"10":{"tf":1.0},"102":{"tf":1.0},"111":{"tf":1.7320508075688772},"115":{"tf":1.0},"116":{"tf":1.7320508075688772},"118":{"tf":1.0},"122":{"tf":1.4142135623730951},"126":{"tf":1.0},"138":{"tf":1.0},"145":{"tf":1.0},"15":{"tf":1.0},"156":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":2.23606797749979},"176":{"tf":1.7320508075688772},"199":{"tf":1.0},"265":{"tf":1.0},"266":{"tf":1.0},"272":{"tf":1.0},"277":{"tf":1.0},"28":{"tf":1.0},"38":{"tf":1.0},"39":{"tf":1.0},"6":{"tf":1.0},"82":{"tf":1.0},"89":{"tf":1.0}}},"l":{"d":{"df":1,"docs":{"106":{"tf":1.0}}},"df":0,"docs":{}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":1,"docs":{"156":{"tf":1.0}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"a":{"b":{"df":0,"docs":{},"l":{"df":1,"docs":{"28":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"df":10,"docs":{"123":{"tf":1.0},"145":{"tf":1.0},"156":{"tf":1.0},"272":{"tf":1.0},"279":{"tf":1.0},"281":{"tf":1.0},"54":{"tf":1.0},"62":{"tf":1.0},"65":{"tf":1.0},"76":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":1,"docs":{"77":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"90":{"tf":1.0}}}}}}},"x":{".":{"5":{"0":{"9":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"1":{"df":22,"docs":{"10":{"tf":2.0},"11":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"167":{"tf":1.4142135623730951},"168":{"tf":1.4142135623730951},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.4142135623730951},"176":{"tf":1.4142135623730951},"178":{"tf":1.0},"191":{"tf":1.0},"44":{"tf":1.0},"59":{"tf":1.4142135623730951},"61":{"tf":1.4142135623730951},"64":{"tf":2.0},"7":{"tf":1.0},"8":{"tf":1.4142135623730951},"85":{"tf":1.0},"9":{"tf":1.0},"93":{"tf":1.0},"94":{"tf":2.23606797749979}},"—":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}}},"6":{"4":{"df":1,"docs":{"49":{"tf":1.0}}},"df":0,"docs":{}},"8":{"6":{"_":{"6":{"4":{"df":12,"docs":{"130":{"tf":1.0},"195":{"tf":1.0},"199":{"tf":1.4142135623730951},"43":{"tf":1.4142135623730951},"44":{"tf":1.4142135623730951},"61":{"tf":1.7320508075688772},"63":{"tf":1.0},"64":{"tf":1.0},"7":{"tf":1.0},"8":{"tf":1.0},"90":{"tf":1.4142135623730951},"93":{"tf":1.4142135623730951}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":37,"docs":{"101":{"tf":1.4142135623730951},"11":{"tf":2.0},"115":{"tf":1.0},"116":{"tf":1.0},"117":{"tf":1.7320508075688772},"118":{"tf":1.0},"119":{"tf":1.0},"15":{"tf":1.7320508075688772},"165":{"tf":1.0},"166":{"tf":1.0},"168":{"tf":1.0},"170":{"tf":1.0},"173":{"tf":1.0},"174":{"tf":1.0},"175":{"tf":1.0},"176":{"tf":1.0},"178":{"tf":1.0},"181":{"tf":1.0},"184":{"tf":1.4142135623730951},"187":{"tf":1.0},"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"197":{"tf":1.0},"198":{"tf":1.4142135623730951},"199":{"tf":2.23606797749979},"43":{"tf":1.0},"44":{"tf":1.0},"56":{"tf":1.0},"61":{"tf":1.7320508075688772},"62":{"tf":1.4142135623730951},"63":{"tf":1.4142135623730951},"8":{"tf":2.23606797749979},"81":{"tf":1.0},"9":{"tf":1.7320508075688772},"97":{"tf":1.0},"99":{"tf":1.0}},"—":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"7":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"_":{"8":{"6":{"df":1,"docs":{"80":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":2,"docs":{"275":{"tf":1.0},"276":{"tf":1.0}},"e":{"df":0,"docs":{},"n":{",":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"267":{"tf":1.0}}}}}},"df":0,"docs":{}},"df":2,"docs":{"265":{"tf":1.0},"267":{"tf":2.0}}}},"m":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"t":{"a":{"df":0,"docs":{},"l":{"2":{"4":{"df":0,"docs":{},"m":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":1,"docs":{"272":{"tf":1.7320508075688772}}}},"df":0,"docs":{}},"_":{"2":{"4":{"df":0,"docs":{},"m":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"3":{"2":{"df":0,"docs":{},"k":{"df":0,"docs":{},"h":{"df":0,"docs":{},"z":{"df":1,"docs":{"272":{"tf":1.4142135623730951}}}}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}},"v":{"df":0,"docs":{},"f":{"df":1,"docs":{"199":{"tf":1.4142135623730951}}}},"w":{"a":{"df":0,"docs":{},"y":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"n":{"d":{"df":1,"docs":{"88":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"df":0,"docs":{}}},"y":{"df":2,"docs":{"203":{"tf":1.0},"43":{"tf":2.23606797749979}},"e":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"161":{"tf":1.0}}}},"df":7,"docs":{"15":{"tf":1.7320508075688772},"49":{"tf":1.0},"51":{"tf":1.0},"65":{"tf":1.0},"70":{"tf":1.0},"85":{"tf":1.4142135623730951},"88":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":1,"docs":{"203":{"tf":1.4142135623730951}}},"u":{"df":0,"docs":{},"r":{"_":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"90":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"_":{"df":0,"docs":{},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"y":{"_":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"70":{"tf":1.0}}}}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"df":0,"docs":{}}}},"u":{"b":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"o":{"df":1,"docs":{"155":{"tf":1.0}}}},"df":0,"docs":{},"h":{"df":0,"docs":{},"s":{"df":0,"docs":{},"m":{"2":{"df":1,"docs":{"156":{"tf":2.0}}},"df":2,"docs":{"155":{"tf":1.0},"156":{"tf":1.0}}}}}}},"df":0,"docs":{}},"y":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":1,"docs":{"161":{"tf":1.0}}}}},"df":0,"docs":{}}},"z":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"a":{"df":5,"docs":{"10":{"tf":1.0},"100":{"tf":1.0},"170":{"tf":1.0},"174":{"tf":1.0},"85":{"tf":1.7320508075688772}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":4,"docs":{"0":{"tf":1.4142135623730951},"248":{"tf":1.4142135623730951},"3":{"tf":1.4142135623730951},"36":{"tf":1.0}}}}},"t":{"a":{"df":3,"docs":{"0":{"tf":1.7320508075688772},"248":{"tf":1.4142135623730951},"3":{"tf":1.0}}},"df":0,"docs":{}}}}},"title":{"root":{"1":{"1":{"df":4,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0}}},"df":1,"docs":{"69":{"tf":1.0}}},"2":{"3":{".":{"0":{"5":{"df":2,"docs":{"185":{"tf":1.0},"188":{"tf":1.0}}},"6":{"df":2,"docs":{"179":{"tf":1.0},"182":{"tf":1.0}}},"9":{"df":2,"docs":{"171":{"tf":1.0},"174":{"tf":1.0}}},"df":0,"docs":{}},"1":{"2":{"df":2,"docs":{"163":{"tf":1.0},"166":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}}},"8":{"df":0,"docs":{},"q":{"df":0,"docs":{},"m":{"df":2,"docs":{"265":{"tf":1.0},"66":{"tf":1.0}}}}},"a":{"b":{"b":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"df":0,"docs":{}},"c":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"73":{"tf":1.0}}}}}},"df":0,"docs":{}},"d":{"d":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}},"df":5,"docs":{"131":{"tf":1.0},"272":{"tf":1.0},"77":{"tf":1.0},"85":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"30":{"tf":1.0}}}}}}},"r":{"df":1,"docs":{"211":{"tf":1.0}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"119":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}}}}},"g":{"df":0,"docs":{},"x":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}},"l":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":1,"docs":{"102":{"tf":1.0}}}}}},"n":{"d":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"i":{"d":{"df":1,"docs":{"198":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":5,"docs":{"11":{"tf":1.0},"2":{"tf":1.0},"52":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}}},"df":0,"docs":{}}},"r":{"df":0,"docs":{},"o":{"a":{"c":{"df":0,"docs":{},"h":{"df":4,"docs":{"278":{"tf":1.0},"279":{"tf":1.0},"280":{"tf":1.0},"56":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"203":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"85":{"tf":1.0}}}}}},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":6,"docs":{"10":{"tf":1.0},"121":{"tf":1.0},"13":{"tf":1.0},"15":{"tf":1.0},"16":{"tf":1.0},"8":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{},"m":{"6":{"4":{"df":2,"docs":{"115":{"tf":1.0},"116":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"t":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"203":{"tf":1.0}}}},"df":0,"docs":{},"f":{"a":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"262":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}}},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"154":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"m":{"df":2,"docs":{"159":{"tf":1.0},"160":{"tf":1.0}}}}}}},"b":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"140":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"203":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"l":{"df":1,"docs":{"148":{"tf":1.0}}}},"n":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"274":{"tf":1.0}}}}},"d":{"df":2,"docs":{"102":{"tf":1.0},"113":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"m":{"df":0,"docs":{},"t":{"df":1,"docs":{"83":{"tf":1.0}}}}}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":6,"docs":{"120":{"tf":1.0},"269":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":2,"docs":{"123":{"tf":1.0},"212":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":5,"docs":{"143":{"tf":1.0},"164":{"tf":1.0},"172":{"tf":1.0},"180":{"tf":1.0},"186":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"p":{"df":1,"docs":{"213":{"tf":1.0}}}},"u":{"df":0,"docs":{},"g":{"df":3,"docs":{"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}},"i":{"df":0,"docs":{},"l":{"d":{"df":8,"docs":{"4":{"tf":1.0},"60":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"68":{"tf":1.0},"76":{"tf":1.0},"8":{"tf":1.0},"83":{"tf":1.0}}},"df":0,"docs":{},"t":{"df":1,"docs":{"78":{"tf":1.0}}}}}}},"c":{"a":{"df":3,"docs":{"157":{"tf":1.0},"158":{"tf":1.0},"250":{"tf":1.0}},"s":{"df":0,"docs":{},"e":{"df":1,"docs":{"122":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"154":{"tf":1.0}}}}}}},"h":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":1,"docs":{"269":{"tf":1.0}}}},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":6,"docs":{"135":{"tf":1.0},"14":{"tf":1.0},"162":{"tf":1.0},"192":{"tf":1.0},"58":{"tf":1.0},"99":{"tf":1.0}}}}}}},"df":0,"docs":{}},"i":{"/":{"c":{"d":{"df":1,"docs":{"207":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"df":0,"docs":{}},"m":{"df":1,"docs":{"251":{"tf":1.0}}},"o":{"d":{"df":0,"docs":{},"e":{"df":1,"docs":{"141":{"tf":1.0}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"88":{"tf":1.0}}}}},"m":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"n":{"d":{"df":2,"docs":{"130":{"tf":1.0},"131":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"142":{"tf":1.0}}}}},"p":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":1,"docs":{"100":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":6,"docs":{"274":{"tf":1.0},"275":{"tf":1.0},"276":{"tf":1.0},"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}}},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"63":{"tf":1.0}}}}}},"n":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"210":{"tf":1.0}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":4,"docs":{"266":{"tf":1.0},"69":{"tf":1.0},"70":{"tf":1.0},"76":{"tf":1.0}}}}}}},"n":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"105":{"tf":1.0},"201":{"tf":1.0}}}},"df":0,"docs":{}}},"s":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":2,"docs":{"22":{"tf":1.0},"36":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"156":{"tf":1.0}}}}},"df":0,"docs":{}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"x":{"df":0,"docs":{},"t":{"df":3,"docs":{"19":{"tf":1.0},"34":{"tf":1.0},"39":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"u":{"df":1,"docs":{"132":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"54":{"tf":1.0}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"11":{"tf":1.0},"141":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"210":{"tf":1.0}}}}},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"47":{"tf":1.0},"84":{"tf":1.0}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"80":{"tf":1.0},"81":{"tf":1.0},"82":{"tf":1.0}}},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"117":{"tf":1.0}}}}}},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"261":{"tf":1.0}}}}}}}},"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":{"48":{"tf":1.0}}}}}}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":1,"docs":{"92":{"tf":1.0}}}}}},"t":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":4,"docs":{"198":{"tf":1.0},"199":{"tf":1.0},"200":{"tf":1.0},"201":{"tf":1.0}}}}}}}}}}}},"d":{"a":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"147":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":4,"docs":{"16":{"tf":1.0},"21":{"tf":1.0},"35":{"tf":1.0},"40":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"282":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":1,"docs":{"29":{"tf":1.0}}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"23":{"tf":1.0}},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"129":{"tf":1.0}}}}}}},"s":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"85":{"tf":1.0}}}}}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":1,"docs":{"3":{"tf":1.0}}}}},"k":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":1,"docs":{"87":{"tf":1.0}}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"59":{"tf":1.0},"9":{"tf":1.0}}}}}},"i":{"c":{"df":18,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"107":{"tf":1.0},"108":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"115":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"198":{"tf":1.0},"201":{"tf":1.0},"267":{"tf":1.0},"270":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"274":{"tf":1.0},"277":{"tf":1.0},"7":{"tf":1.0}}},"df":0,"docs":{}}}},"h":{"c":{"df":0,"docs":{},"p":{"df":1,"docs":{"214":{"tf":1.0}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"283":{"tf":1.0}}}}}},"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"b":{"df":0,"docs":{},"u":{"df":0,"docs":{},"t":{"df":1,"docs":{"132":{"tf":1.0}}}}},"df":0,"docs":{}}}}}},"m":{"a":{"df":1,"docs":{"215":{"tf":1.0}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"l":{"df":2,"docs":{"103":{"tf":1.0},"118":{"tf":1.0}}}}},"df":2,"docs":{"102":{"tf":1.0},"119":{"tf":1.0}}}}}}}},"df":0,"docs":{},"e":{"d":{"d":{"df":0,"docs":{},"s":{"a":{"df":1,"docs":{"252":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}},"df":1,"docs":{"216":{"tf":1.0}},"m":{"b":{"df":0,"docs":{},"e":{"d":{"df":1,"docs":{"1":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"l":{"df":1,"docs":{"83":{"tf":1.0}}}}},"n":{"a":{"b":{"df":0,"docs":{},"l":{"df":4,"docs":{"112":{"tf":1.0},"118":{"tf":1.0},"145":{"tf":1.0},"46":{"tf":1.0}}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"y":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":3,"docs":{"169":{"tf":1.0},"177":{"tf":1.0},"87":{"tf":1.0}}}}}}}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"265":{"tf":1.0}}}}}}}}},"u":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"217":{"tf":1.0}}},"df":0,"docs":{}}},"x":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":2,"docs":{"57":{"tf":1.0},"93":{"tf":1.0}}}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"267":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"f":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"5":{"tf":1.0}}}}}},"df":0,"docs":{}},"i":{"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"31":{"tf":1.0}}}}}}}}}},"n":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}},"r":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"160":{"tf":1.0}}}}},"x":{"df":4,"docs":{"159":{"tf":1.0},"167":{"tf":1.0},"175":{"tf":1.0},"183":{"tf":1.0}}}},"l":{"df":0,"docs":{},"u":{"df":0,"docs":{},"s":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"79":{"tf":1.0}}}},"df":0,"docs":{}}}}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"t":{"df":1,"docs":{"149":{"tf":1.0}}}},"df":1,"docs":{"274":{"tf":1.0}}}}},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"136":{"tf":1.0}}}}}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"82":{"tf":1.0}}}}}},"w":{"df":1,"docs":{"218":{"tf":1.0}}}},"g":{"a":{"df":0,"docs":{},"l":{"a":{"df":1,"docs":{"219":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":2,"docs":{"130":{"tf":1.0},"133":{"tf":1.0}}}}},"t":{"df":1,"docs":{"194":{"tf":1.0}},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"27":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"f":{"df":30,"docs":{"0":{"tf":1.0},"128":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"161":{"tf":1.0},"163":{"tf":1.0},"166":{"tf":1.0},"171":{"tf":1.0},"174":{"tf":1.0},"179":{"tf":1.0},"182":{"tf":1.0},"185":{"tf":1.0},"188":{"tf":1.0},"193":{"tf":1.0},"198":{"tf":1.0},"2":{"tf":1.0},"206":{"tf":1.0},"278":{"tf":1.0},"279":{"tf":1.0},"62":{"tf":1.4142135623730951},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"tf":1.0},"76":{"tf":1.0},"89":{"tf":1.0},"90":{"tf":1.0},"91":{"tf":1.0},"92":{"tf":1.0}}}},"df":0,"docs":{}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"202":{"tf":1.0}}}}},"df":0,"docs":{}}}}},"p":{"df":0,"docs":{},"g":{"df":1,"docs":{"253":{"tf":1.0}}}},"r":{"a":{"df":0,"docs":{},"p":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"26":{"tf":1.0}}},"df":0,"docs":{}}}}},"df":0,"docs":{}},"u":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":9,"docs":{"108":{"tf":1.0},"109":{"tf":1.0},"114":{"tf":1.0},"126":{"tf":1.0},"271":{"tf":1.0},"272":{"tf":1.0},"273":{"tf":1.0},"275":{"tf":1.0},"53":{"tf":1.0}}}}},"i":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"54":{"tf":1.0}}}}}}},"df":2,"docs":{"220":{"tf":1.0},"86":{"tf":1.0}}}}},"h":{"a":{"df":0,"docs":{},"r":{"d":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":2,"docs":{"41":{"tf":1.0},"43":{"tf":1.0}}}},"w":{"a":{"df":0,"docs":{},"r":{"df":7,"docs":{"155":{"tf":1.0},"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"8":{"tf":1.0},"97":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"df":0,"docs":{},"i":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":2,"docs":{"157":{"tf":1.0},"158":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{}}}},"o":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":8,"docs":{"107":{"tf":1.0},"125":{"tf":1.0},"17":{"tf":1.0},"266":{"tf":1.0},"267":{"tf":1.0},"276":{"tf":1.0},"44":{"tf":1.0},"62":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"m":{"df":2,"docs":{"156":{"tf":1.0},"254":{"tf":1.0}}}},"y":{"d":{"df":0,"docs":{},"r":{"a":{"df":1,"docs":{"145":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":3,"docs":{"128":{"tf":1.0},"130":{"tf":1.0},"131":{"tf":1.0}}}}}}}}}}}},"i":{".":{"df":0,"docs":{},"m":{"df":0,"docs":{},"x":{"df":2,"docs":{"265":{"tf":1.0},"66":{"tf":1.0}}}}},"c":{"df":0,"docs":{},"i":{"c":{"df":0,"docs":{},"l":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"df":0,"docs":{}}},"d":{"df":1,"docs":{"221":{"tf":1.0}}},"df":0,"docs":{},"m":{"a":{"df":0,"docs":{},"g":{"df":8,"docs":{"145":{"tf":1.0},"194":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"65":{"tf":1.0},"66":{"tf":1.0},"67":{"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":3,"docs":{"48":{"tf":1.0},"55":{"tf":1.0},"95":{"tf":1.0}}}}}}}}}},"n":{"df":0,"docs":{},"f":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"153":{"tf":1.0}}}}}},"df":0,"docs":{}}}}}},"df":0,"docs":{}}},"i":{"df":0,"docs":{},"t":{"df":0,"docs":{},"i":{"df":1,"docs":{"279":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"t":{"a":{"df":0,"docs":{},"l":{"df":10,"docs":{"170":{"tf":1.0},"178":{"tf":1.0},"199":{"tf":1.0},"278":{"tf":1.0},"282":{"tf":1.0},"72":{"tf":1.0},"75":{"tf":1.0},"76":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"170":{"tf":1.0},"178":{"tf":1.0}}}},"df":0,"docs":{}}}}},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"g":{"df":0,"docs":{},"r":{"df":1,"docs":{"132":{"tf":1.0}}}},"r":{"a":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"281":{"tf":1.0},"282":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{},"r":{"df":0,"docs":{},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":1,"docs":{"115":{"tf":1.0}}}}}}}}}},"o":{"df":0,"docs":{},"m":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":1,"docs":{"222":{"tf":1.0}}}}}},"p":{"df":1,"docs":{"223":{"tf":1.0}}},"s":{"a":{"df":1,"docs":{"224":{"tf":1.0}}},"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":5,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0},"72":{"tf":1.0}}}}}},"j":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"s":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}}}}},"k":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":4,"docs":{"266":{"tf":1.0},"42":{"tf":1.0},"43":{"tf":1.0},"44":{"tf":1.0}}}}}},"y":{"df":4,"docs":{"153":{"tf":1.0},"47":{"tf":1.0},"69":{"tf":1.0},"74":{"tf":1.4142135623730951}}}},"i":{"df":0,"docs":{},"t":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"n":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"m":{"df":2,"docs":{"225":{"tf":1.0},"226":{"tf":1.0}}}}},"l":{"a":{"b":{"df":0,"docs":{},"w":{"c":{"df":1,"docs":{"87":{"tf":1.0}}},"df":1,"docs":{"227":{"tf":1.4142135623730951}}}},"df":0,"docs":{},"p":{"df":0,"docs":{},"t":{"df":0,"docs":{},"o":{"df":0,"docs":{},"p":{"df":2,"docs":{"191":{"tf":1.0},"94":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"196":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"86":{"tf":1.0}}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"v":{"df":0,"docs":{},"o":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}}}}},"v":{"df":0,"docs":{},"e":{"df":0,"docs":{},"l":{"df":1,"docs":{"138":{"tf":1.0}}}}}},"i":{"b":{"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"89":{"tf":1.0}}}}},"df":0,"docs":{}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":4,"docs":{"168":{"tf":1.0},"176":{"tf":1.0},"184":{"tf":1.0},"189":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":1,"docs":{"131":{"tf":1.0}}}}},"o":{"c":{"a":{"df":0,"docs":{},"l":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}},"m":{"a":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":3,"docs":{"32":{"tf":1.0},"74":{"tf":1.4142135623730951},"98":{"tf":1.0}}}}}},"df":0,"docs":{},"n":{"a":{"df":0,"docs":{},"g":{"df":2,"docs":{"120":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}},"t":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"74":{"tf":1.0}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":1,"docs":{"148":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":1,"docs":{"140":{"tf":1.0}}}}}},"df":0,"docs":{},"k":{"df":1,"docs":{"66":{"tf":1.0}}}},"h":{"0":{"1":{"df":1,"docs":{"23":{"tf":1.0}}},"2":{"df":1,"docs":{"24":{"tf":1.0}}},"3":{"df":1,"docs":{"25":{"tf":1.0}}},"4":{"df":1,"docs":{"26":{"tf":1.0}}},"5":{"df":1,"docs":{"27":{"tf":1.0}}},"6":{"df":1,"docs":{"28":{"tf":1.0}}},"7":{"df":1,"docs":{"29":{"tf":1.0}}},"8":{"df":1,"docs":{"30":{"tf":1.0}}},"9":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"i":{"c":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":2,"docs":{"67":{"tf":1.0},"81":{"tf":1.0}}}}}},"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":1,"docs":{"128":{"tf":1.0}}}}}}},"df":0,"docs":{},"n":{"df":0,"docs":{},"i":{"df":0,"docs":{},"m":{"df":2,"docs":{"17":{"tf":1.0},"29":{"tf":1.0}}}}}},"m":{"c":{"df":1,"docs":{"216":{"tf":1.0}}},"df":0,"docs":{},"u":{"df":1,"docs":{"228":{"tf":1.0}}}},"o":{"d":{"df":0,"docs":{},"u":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"r":{"df":1,"docs":{"281":{"tf":1.0}}}},"df":4,"docs":{"155":{"tf":1.0},"77":{"tf":1.0},"78":{"tf":1.0},"92":{"tf":1.0}}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"116":{"tf":1.0}}}}},"s":{"df":0,"docs":{},"i":{"df":1,"docs":{"229":{"tf":1.0}}}}},"n":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":0,"docs":{},"v":{"df":0,"docs":{},"m":{"df":0,"docs":{},"—":{"df":0,"docs":{},"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":{"32":{"tf":1.0}}}}}}}}}}}},"w":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"25":{"tf":1.0}}}}}}},"w":{"df":4,"docs":{"166":{"tf":1.0},"174":{"tf":1.0},"182":{"tf":1.0},"188":{"tf":1.0}}},"x":{"df":0,"docs":{},"t":{"df":1,"docs":{"12":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"x":{"df":4,"docs":{"146":{"tf":1.0},"23":{"tf":1.0},"28":{"tf":1.0},"72":{"tf":1.0}},"o":{"df":3,"docs":{"230":{"tf":1.0},"280":{"tf":1.0},"68":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"282":{"tf":1.0}}},"t":{"df":0,"docs":{},"e":{"df":3,"docs":{"161":{"tf":1.0},"264":{"tf":1.0},"268":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"d":{"df":0,"docs":{},"i":{"a":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{}}},"x":{"df":0,"docs":{},"p":{"df":1,"docs":{"66":{"tf":1.0}}}}},"o":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":1,"docs":{"231":{"tf":1.0}}}},"p":{"df":0,"docs":{},"e":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":0,"docs":{},"l":{"df":1,"docs":{"255":{"tf":1.0}}}}}}},"t":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":5,"docs":{"123":{"tf":1.0},"128":{"tf":1.0},"129":{"tf":1.0},"131":{"tf":1.0},"157":{"tf":1.0}}}}}}},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":1,"docs":{"119":{"tf":1.0}}}}},"n":{"df":6,"docs":{"104":{"tf":1.0},"110":{"tf":1.0},"111":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"65":{"tf":1.0}}}}},"s":{"df":1,"docs":{"232":{"tf":1.0}},"s":{"df":1,"docs":{"53":{"tf":1.0}}}},"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":{"121":{"tf":1.0}}}}}}}}}},"p":{"a":{"c":{"df":0,"docs":{},"k":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"103":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"r":{"a":{"df":0,"docs":{},"m":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"197":{"tf":1.0}}}}}},"df":0,"docs":{}},"s":{"df":0,"docs":{},"s":{"df":1,"docs":{"197":{"tf":1.0}},"t":{"df":0,"docs":{},"h":{"df":0,"docs":{},"r":{"df":0,"docs":{},"o":{"df":0,"docs":{},"u":{"df":0,"docs":{},"g":{"df":0,"docs":{},"h":{"df":11,"docs":{"101":{"tf":1.0},"102":{"tf":1.0},"104":{"tf":1.0},"106":{"tf":1.0},"110":{"tf":1.0},"117":{"tf":1.0},"265":{"tf":1.0},"268":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"37":{"tf":1.0}}}}}}}}}}}},"c":{"a":{"df":1,"docs":{"154":{"tf":1.0}}},"df":0,"docs":{},"i":{"df":2,"docs":{"115":{"tf":1.0},"233":{"tf":1.0}},"e":{"df":6,"docs":{"110":{"tf":1.0},"111":{"tf":1.0},"112":{"tf":1.0},"117":{"tf":1.0},"118":{"tf":1.0},"234":{"tf":1.0}}}}},"df":0,"docs":{},"k":{"df":0,"docs":{},"i":{"df":1,"docs":{"256":{"tf":1.0}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":0,"docs":{},"f":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"m":{"df":3,"docs":{"2":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0}}}}}}}},"df":0,"docs":{}},"o":{"df":0,"docs":{},"w":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":0,"docs":{},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"61":{"tf":1.0}}}}}}}}}}},"i":{"df":0,"docs":{},"n":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":1,"docs":{"3":{"tf":1.0}}}}}},"df":0,"docs":{}},"v":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"154":{"tf":1.0},"74":{"tf":1.0}}}},"df":0,"docs":{}}},"o":{"c":{"df":0,"docs":{},"e":{"df":0,"docs":{},"s":{"df":0,"docs":{},"s":{"df":3,"docs":{"133":{"tf":1.0},"160":{"tf":1.0},"43":{"tf":1.0}},"o":{"df":0,"docs":{},"r":{"df":1,"docs":{"120":{"tf":1.0}}}}}}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"l":{"df":1,"docs":{"24":{"tf":1.0}}}}},"j":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":2,"docs":{"205":{"tf":1.0},"93":{"tf":1.0}}}},"df":0,"docs":{}}},"p":{"df":0,"docs":{},"o":{"df":0,"docs":{},"s":{"df":1,"docs":{"158":{"tf":1.0}}}}},"t":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"143":{"tf":1.0}}}},"df":0,"docs":{}}}}},"u":{"b":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"c":{"df":2,"docs":{"153":{"tf":1.0},"74":{"tf":1.0}}},"df":0,"docs":{}}}},"df":0,"docs":{}},"y":{"df":0,"docs":{},"n":{"a":{"c":{"df":0,"docs":{},"l":{"df":1,"docs":{"257":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"q":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":0,"docs":{},"u":{"df":4,"docs":{"197":{"tf":1.0},"235":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0}}}}}},"r":{"a":{"df":1,"docs":{"258":{"tf":1.0}}},"df":0,"docs":{},"e":{"a":{"d":{"df":1,"docs":{"31":{"tf":1.0}}},"df":0,"docs":{}},"c":{"df":0,"docs":{},"o":{"df":0,"docs":{},"r":{"d":{"df":1,"docs":{"16":{"tf":1.0}}},"df":0,"docs":{}}}},"d":{"df":0,"docs":{},"u":{"c":{"df":1,"docs":{"24":{"tf":1.0}}},"df":0,"docs":{}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":4,"docs":{"152":{"tf":1.0},"55":{"tf":1.0},"7":{"tf":1.0},"95":{"tf":1.0}}}}},"l":{"a":{"df":0,"docs":{},"t":{"df":3,"docs":{"127":{"tf":1.0},"205":{"tf":1.0},"249":{"tf":1.0}}}},"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"s":{"df":10,"docs":{"161":{"tf":1.0},"163":{"tf":1.0},"164":{"tf":1.0},"171":{"tf":1.0},"172":{"tf":1.0},"179":{"tf":1.0},"180":{"tf":1.0},"185":{"tf":1.0},"186":{"tf":1.0},"8":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":3,"docs":{"68":{"tf":1.0},"73":{"tf":1.0},"74":{"tf":1.0}}}}},"q":{"df":0,"docs":{},"u":{"df":0,"docs":{},"i":{"df":0,"docs":{},"r":{"df":5,"docs":{"139":{"tf":1.0},"169":{"tf":1.0},"177":{"tf":1.0},"20":{"tf":1.0},"97":{"tf":1.0}}}}}},"s":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"r":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"264":{"tf":1.0}}}},"df":0,"docs":{}}},"df":0,"docs":{},"t":{"df":1,"docs":{"119":{"tf":1.0}}}}},"v":{"df":0,"docs":{},"i":{"df":0,"docs":{},"s":{"df":1,"docs":{"91":{"tf":1.0}}}}}},"i":{"df":0,"docs":{},"s":{"c":{"df":0,"docs":{},"v":{"6":{"4":{"df":1,"docs":{"81":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}}},"df":0,"docs":{}}},"u":{"df":0,"docs":{},"n":{"df":11,"docs":{"193":{"tf":1.0},"195":{"tf":1.0},"198":{"tf":1.0},"200":{"tf":1.0},"270":{"tf":1.0},"277":{"tf":1.0},"60":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0},"64":{"tf":1.0},"68":{"tf":1.0}}},"s":{"df":0,"docs":{},"t":{"df":1,"docs":{"37":{"tf":1.4142135623730951}}}}}},"s":{"b":{"df":0,"docs":{},"o":{"df":0,"docs":{},"m":{"df":5,"docs":{"148":{"tf":1.0},"149":{"tf":1.0},"150":{"tf":1.0},"151":{"tf":1.0},"259":{"tf":1.0}}}},"s":{"a":{"df":1,"docs":{"236":{"tf":1.0}}},"df":0,"docs":{}}},"c":{"df":2,"docs":{"249":{"tf":1.0},"260":{"tf":1.0}}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"u":{"df":0,"docs":{},"r":{"df":11,"docs":{"134":{"tf":1.0},"140":{"tf":1.0},"141":{"tf":1.0},"155":{"tf":1.0},"159":{"tf":1.0},"191":{"tf":1.0},"261":{"tf":1.0},"45":{"tf":1.0},"46":{"tf":1.0},"47":{"tf":1.0},"49":{"tf":1.0}}}}},"df":0,"docs":{},"l":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"t":{"df":1,"docs":{"106":{"tf":1.0}}}},"df":0,"docs":{}}},"m":{"df":0,"docs":{},"i":{"df":1,"docs":{"160":{"tf":1.0}}}},"r":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"52":{"tf":1.0}}},"df":0,"docs":{}}}},"t":{"df":1,"docs":{"70":{"tf":1.0}},"u":{"df":0,"docs":{},"p":{"df":2,"docs":{"271":{"tf":1.0},"73":{"tf":1.0}}}}}},"h":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}},"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"c":{"a":{"df":0,"docs":{},"s":{"df":1,"docs":{"190":{"tf":1.0}}}},"df":0,"docs":{}},"df":0,"docs":{}}}},"i":{"df":0,"docs":{},"g":{"df":0,"docs":{},"n":{"df":3,"docs":{"142":{"tf":1.0},"144":{"tf":1.0},"145":{"tf":1.0}}}},"n":{"df":0,"docs":{},"g":{"df":0,"docs":{},"l":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"k":{"df":0,"docs":{},"u":{"df":1,"docs":{"237":{"tf":1.0}}}},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"t":{"df":1,"docs":{"111":{"tf":1.0}}}},"s":{"a":{"df":3,"docs":{"136":{"tf":1.0},"137":{"tf":1.0},"263":{"tf":1.0}}},"df":0,"docs":{}}},"o":{"c":{"df":1,"docs":{"238":{"tf":1.0}}},"df":0,"docs":{},"f":{"df":0,"docs":{},"t":{"df":0,"docs":{},"w":{"a":{"df":0,"docs":{},"r":{"df":3,"docs":{"144":{"tf":1.0},"148":{"tf":1.0},"262":{"tf":1.0}}}},"df":0,"docs":{}}}},"u":{"df":0,"docs":{},"r":{"c":{"df":2,"docs":{"141":{"tf":1.0},"274":{"tf":1.0}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":2,"docs":{"128":{"tf":1.0},"149":{"tf":1.0}}}}},"df":0,"docs":{}}},"s":{"d":{"df":1,"docs":{"239":{"tf":1.0}}},"df":0,"docs":{},"h":{"df":1,"docs":{"69":{"tf":1.0}}},"r":{"c":{"df":1,"docs":{"208":{"tf":1.0}}},"df":0,"docs":{}}},"t":{"a":{"c":{"df":0,"docs":{},"k":{"df":1,"docs":{"50":{"tf":1.0}}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":3,"docs":{"109":{"tf":1.0},"114":{"tf":1.0},"130":{"tf":1.0}}}},"t":{"df":0,"docs":{},"e":{"df":1,"docs":{"119":{"tf":1.0}}},"u":{"df":4,"docs":{"18":{"tf":1.0},"33":{"tf":1.0},"38":{"tf":1.0},"6":{"tf":1.0}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"p":{"df":1,"docs":{"12":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"df":1,"docs":{"146":{"tf":1.0}}}}}},"u":{"df":0,"docs":{},"p":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"df":0,"docs":{},"i":{"df":2,"docs":{"134":{"tf":1.0},"4":{"tf":1.0}}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":7,"docs":{"165":{"tf":1.0},"173":{"tf":1.0},"181":{"tf":1.0},"187":{"tf":1.0},"37":{"tf":1.0},"8":{"tf":1.0},"82":{"tf":1.0}}}}}}}},"y":{"df":0,"docs":{},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"e":{"df":0,"docs":{},"m":{"df":3,"docs":{"278":{"tf":1.0},"4":{"tf":1.0},"51":{"tf":1.0}}}}}}}},"t":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"g":{"df":0,"docs":{},"e":{"df":0,"docs":{},"t":{"df":1,"docs":{"10":{"tf":1.0}}}}}}},"c":{"b":{"df":1,"docs":{"240":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{},"e":{"c":{"df":0,"docs":{},"h":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"96":{"tf":1.0}}}}}}}}},"df":0,"docs":{},"m":{"df":0,"docs":{},"p":{"df":0,"docs":{},"l":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"89":{"tf":1.0},"90":{"tf":1.0}}}},"df":0,"docs":{}}}},"r":{"df":0,"docs":{},"m":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":0,"docs":{},"o":{"df":0,"docs":{},"g":{"df":1,"docs":{"137":{"tf":1.0}}}}}}}}}},"s":{"df":0,"docs":{},"t":{"df":3,"docs":{"124":{"tf":1.0},"125":{"tf":1.0},"126":{"tf":1.0}}}}},"i":{"df":0,"docs":{},"i":{"df":1,"docs":{"209":{"tf":1.0}}}},"l":{"df":1,"docs":{"241":{"tf":1.0}}},"o":{"df":0,"docs":{},"o":{"df":0,"docs":{},"l":{"df":2,"docs":{"151":{"tf":1.0},"28":{"tf":1.0}}}},"p":{"df":0,"docs":{},"i":{"c":{"df":1,"docs":{"127":{"tf":1.0}}},"df":0,"docs":{}}},"u":{"c":{"df":0,"docs":{},"h":{"df":1,"docs":{"273":{"tf":1.0}}}},"df":0,"docs":{}}},"r":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"t":{"df":1,"docs":{"147":{"tf":1.0}}}}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"e":{"df":4,"docs":{"107":{"tf":1.0},"108":{"tf":1.0},"267":{"tf":1.0},"274":{"tf":1.0}}}},"i":{"df":0,"docs":{},"v":{"df":0,"docs":{},"i":{"a":{"df":1,"docs":{"204":{"tf":1.0}}},"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":2,"docs":{"71":{"tf":1.0},"94":{"tf":1.0}}}}}}}}}},"df":0,"docs":{}}}}},"u":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"126":{"tf":1.0}}},"df":3,"docs":{"104":{"tf":1.0},"105":{"tf":1.0},"242":{"tf":1.0}},"i":{"df":1,"docs":{"106":{"tf":1.0}}}}}},"df":1,"docs":{"269":{"tf":1.0}},"e":{"df":0,"docs":{},"f":{"df":0,"docs":{},"i":{"df":1,"docs":{"243":{"tf":1.0}}}}},"i":{"df":2,"docs":{"196":{"tf":1.0},"244":{"tf":1.0}}},"p":{"d":{"a":{"df":0,"docs":{},"t":{"df":2,"docs":{"30":{"tf":1.0},"91":{"tf":1.0}}}},"df":0,"docs":{}},"df":1,"docs":{"70":{"tf":1.0}},"s":{"df":0,"docs":{},"t":{"df":0,"docs":{},"r":{"df":0,"docs":{},"e":{"a":{"df":0,"docs":{},"m":{"df":1,"docs":{"160":{"tf":1.0}}}},"df":0,"docs":{}}}}}},"s":{"a":{"df":0,"docs":{},"g":{"df":1,"docs":{"150":{"tf":1.0}}}},"df":6,"docs":{"103":{"tf":1.0},"122":{"tf":1.0},"123":{"tf":1.0},"196":{"tf":1.0},"203":{"tf":1.0},"90":{"tf":1.0}},"e":{"df":0,"docs":{},"r":{"df":1,"docs":{"72":{"tf":1.0}}}}}},"v":{"a":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"a":{"df":0,"docs":{},"n":{"df":0,"docs":{},"t":{"df":2,"docs":{"15":{"tf":1.0},"156":{"tf":1.0}}}}},"df":0,"docs":{}}}},"df":0,"docs":{},"e":{"df":0,"docs":{},"r":{"df":0,"docs":{},"i":{"df":0,"docs":{},"f":{"df":1,"docs":{"49":{"tf":1.0}}}},"s":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":0,"docs":{},"n":{"df":1,"docs":{"141":{"tf":1.0}}}}}}}},"f":{"df":0,"docs":{},"i":{"df":0,"docs":{},"o":{"df":5,"docs":{"102":{"tf":1.0},"112":{"tf":1.0},"113":{"tf":1.0},"118":{"tf":1.0},"245":{"tf":1.0}}}}},"i":{"a":{"df":1,"docs":{"30":{"tf":1.0}}},"df":0,"docs":{},"r":{"df":0,"docs":{},"t":{"df":0,"docs":{},"u":{"a":{"df":0,"docs":{},"l":{"df":7,"docs":{"1":{"tf":1.0},"120":{"tf":1.0},"123":{"tf":1.0},"198":{"tf":1.0},"32":{"tf":1.0},"97":{"tf":1.0},"98":{"tf":1.0}}}},"df":0,"docs":{}}}}},"m":{"df":12,"docs":{"109":{"tf":1.0},"11":{"tf":1.0},"114":{"tf":1.0},"193":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"246":{"tf":1.0},"51":{"tf":1.0},"52":{"tf":1.0},"62":{"tf":1.0},"84":{"tf":1.0},"86":{"tf":1.0}},"m":{"df":3,"docs":{"247":{"tf":1.0},"37":{"tf":1.0},"98":{"tf":1.0}},"—":{"b":{"df":0,"docs":{},"u":{"df":1,"docs":{"37":{"tf":1.0}}}},"df":0,"docs":{}}}},"p":{"df":0,"docs":{},"n":{"df":1,"docs":{"73":{"tf":1.0}}}}},"w":{"df":0,"docs":{},"i":{"df":0,"docs":{},"n":{"d":{"df":0,"docs":{},"o":{"df":0,"docs":{},"w":{"df":5,"docs":{"193":{"tf":1.0},"194":{"tf":1.0},"195":{"tf":1.0},"196":{"tf":1.0},"88":{"tf":1.0}}}}},"df":0,"docs":{}}},"o":{"df":0,"docs":{},"r":{"df":0,"docs":{},"k":{"df":1,"docs":{"116":{"tf":1.0}}}}}},"x":{"1":{"df":2,"docs":{"64":{"tf":1.0},"94":{"tf":1.0}}},"8":{"6":{"df":3,"docs":{"117":{"tf":1.0},"62":{"tf":1.0},"63":{"tf":1.0}}},"df":0,"docs":{}},"df":0,"docs":{}},"z":{"df":0,"docs":{},"t":{"a":{"df":1,"docs":{"248":{"tf":1.0}}},"df":0,"docs":{}}}}}},"lang":"English","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